about summary refs log tree commit diff
path: root/src/libstd/path/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-08 10:06:45 -0800
committerbors <bors@rust-lang.org>2014-01-08 10:06:45 -0800
commit430652c970db41f718936bb649516c401b02964b (patch)
treea41d51a20c1b3c876a345039bcfdd86a5c9b8cc2 /src/libstd/path/mod.rs
parentf3a8baafbecdb6e41f001c8f218d4796a9ca8d40 (diff)
parent0547fb9cad4053f3ec66e722b7a05df259d63038 (diff)
downloadrust-430652c970db41f718936bb649516c401b02964b.tar.gz
rust-430652c970db41f718936bb649516c401b02964b.zip
auto merge of #11370 : alexcrichton/rust/issue-10465, r=pwalton
Turned out to be a 2-line fix, but the compiler fallout was huge.
Diffstat (limited to 'src/libstd/path/mod.rs')
-rw-r--r--src/libstd/path/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index 6488595ea4f..354cc10f022 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -687,6 +687,7 @@ fn from_utf8_with_replacement(mut v: &[u8]) -> ~str {
 }
 #[cfg(test)]
 mod tests {
+    use prelude::*;
     use super::{GenericPath, PosixPath, WindowsPath};
     use c_str::ToCStr;