diff options
| author | Brendan Zabarauskas <bjzaba@yahoo.com.au> | 2014-02-23 12:29:42 +1100 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-02-24 21:22:26 -0800 |
| commit | 84a8893f19c4cf87355984c8d5fa604a5828161a (patch) | |
| tree | dcfe266d1345a2ac9ed233eee848c6943d497be6 /src/test | |
| parent | 3cc95314c31311138e189d2ad91bb537d034d3c1 (diff) | |
| download | rust-84a8893f19c4cf87355984c8d5fa604a5828161a.tar.gz rust-84a8893f19c4cf87355984c8d5fa604a5828161a.zip | |
Remove std::from_str::FromStr from the prelude
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/bench/shootout-threadring.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/test/bench/shootout-threadring.rs b/src/test/bench/shootout-threadring.rs index 7063194eab8..6ce6fb503a1 100644 --- a/src/test/bench/shootout-threadring.rs +++ b/src/test/bench/shootout-threadring.rs @@ -55,6 +55,8 @@ fn roundtrip(id: int, n_tasks: int, p: &Port<int>, ch: &Chan<int>) { } fn main() { + use std::from_str::FromStr; + let args = if os::getenv("RUST_BENCH").is_some() { ~[~"", ~"2000000", ~"503"] } |
