diff options
author | Nathan Lilienthal <nathan@nixpulvis.com> | 2018-01-10 20:32:38 -0700 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2018-01-10 20:55:10 -0800 |
commit | 3b1d5fce1da158f392f9eb0b1cd191f31a6d1a5d (patch) | |
tree | f3bb5262b72cb479cb135bb5fe1f2dcbf8a1a71f | |
parent | 7d71f6a02a4bbd00805c91388f257198c1173912 (diff) | |
download | r-alacritty-vte-3b1d5fce1da158f392f9eb0b1cd191f31a6d1a5d.tar.gz r-alacritty-vte-3b1d5fce1da158f392f9eb0b1cd191f31a6d1a5d.tar.bz2 r-alacritty-vte-3b1d5fce1da158f392f9eb0b1cd191f31a6d1a5d.zip |
Fix tests to run.
Links against STD to allow use of Vec.
-rw-r--r-- | src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -414,7 +414,12 @@ pub trait Perform { } #[cfg(test)] +#[macro_use] +extern crate std; + +#[cfg(test)] mod tests { + use std::vec::Vec; use super::{Parser, Perform}; use core::i64; |