about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-12-27 00:48:41 +0000
committerbors <bors@rust-lang.org>2014-12-27 00:48:41 +0000
commit3c60bc02ce6de2823d0b837f90d5db0077fce6f7 (patch)
tree465805adb25fba470b8da95ff820a363f32a8dee /src/libcollections
parentc06edbad34f2f8f2fa5138e855a442db1c6324d1 (diff)
parent4b92a5a229ebe7635851fc7bad94108f9de8dcc6 (diff)
auto merge of #19254 : nick29581/rust/dxr-glob, r=pcwalton
There is also some work here to make resolve a bit more stable - it no longer overwrites a specific import with a glob import.

r?
Diffstat (limited to 'src/libcollections')
-rw-r--r--src/libcollections/str.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs
index 5feae5e558e..bccd2a1198a 100644
--- a/src/libcollections/str.rs
+++ b/src/libcollections/str.rs
@@ -3330,10 +3330,10 @@ mod tests {
 
 #[cfg(test)]
 mod bench {
+    use super::*;
     use prelude::*;
     use test::Bencher;
     use test::black_box;
-    use super::*;
 
     #[bench]
     fn char_iterator(b: &mut Bencher) {