summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-05-16 10:15:33 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-06-11 09:51:37 -0700
commit54c2a1e1ce7f32576f0692a1de3fe2763d13bac9 (patch)
tree62c34c3c945986ccb3e409df57ed0579a2ddcf9a /src/liballoc
parent53ad426e92f8099a701f3f54c02dc8f069f5939a (diff)
downloadrust-54c2a1e1ce7f32576f0692a1de3fe2763d13bac9.tar.gz
rust-54c2a1e1ce7f32576f0692a1de3fe2763d13bac9.zip
rustc: Move the AST from @T to Gc<T>
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/rc.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/rc.rs b/src/liballoc/rc.rs
index 8b28ab917b3..db6af30bce7 100644
--- a/src/liballoc/rc.rs
+++ b/src/liballoc/rc.rs
@@ -320,7 +320,7 @@ mod tests {
     #[test]
     fn gc_inside() {
         // see issue #11532
-        use realstd::gc::Gc;
+        use std::gc::GC;
         let a = Rc::new(RefCell::new(box(GC) 1));
         assert!(a.try_borrow_mut().is_some());
     }