diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2013-06-30 19:36:55 -0700 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2013-07-04 16:30:48 -0700 |
| commit | 8552a7477544b4bbf6ddd39e011a0e514cfd75d6 (patch) | |
| tree | 3772af49908fcaa4cd6154c3288a0aa33829b19e /src/compiletest/util.rs | |
| parent | f8507778a36478035f46bfa9f925398a36cd443f (diff) | |
| download | rust-8552a7477544b4bbf6ddd39e011a0e514cfd75d6.tar.gz rust-8552a7477544b4bbf6ddd39e011a0e514cfd75d6.zip | |
Bring compiletest/rustpkg/driver up to date on std vs core
Diffstat (limited to 'src/compiletest/util.rs')
| -rw-r--r-- | src/compiletest/util.rs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/compiletest/util.rs b/src/compiletest/util.rs index 26a62f8a5b2..5af469ff841 100644 --- a/src/compiletest/util.rs +++ b/src/compiletest/util.rs @@ -8,12 +8,10 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -use core::prelude::*; - use common::config; -use core::io; -use core::os::getenv; +use std::io; +use std::os::getenv; pub fn make_new_path(path: &str) -> ~str { |
