diff options
Diffstat (limited to 'src/compiletest/header.rs')
| -rw-r--r-- | src/compiletest/header.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiletest/header.rs b/src/compiletest/header.rs index 5571e159ee3..c63436a2c55 100644 --- a/src/compiletest/header.rs +++ b/src/compiletest/header.rs @@ -103,8 +103,8 @@ pub fn is_test_ignored(config: &config, testfile: &Path) -> bool { } fn iter_header(testfile: &Path, it: &fn(&str) -> bool) -> bool { - use std::rt::io::buffered::BufferedReader; - use std::rt::io::File; + use std::io::buffered::BufferedReader; + use std::io::File; let mut rdr = BufferedReader::new(File::open(testfile).unwrap()); loop { |
