about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-11-20 14:16:23 -0800
committerbors <bors@rust-lang.org>2013-11-20 14:16:23 -0800
commit760942d7d2a0701f526a5bc634419df7a1e941fe (patch)
tree90febe16deca2656ef5254917a96f4a61dd5042b /src/libstd/lib.rs
parente12bc239b4e85d0dedc5ba6e9f7ffa0b91ade634 (diff)
parent543cae9a464fda1f1652eb1b103e648472d5dd73 (diff)
downloadrust-760942d7d2a0701f526a5bc634419df7a1e941fe.tar.gz
rust-760942d7d2a0701f526a5bc634419df7a1e941fe.zip
auto merge of #10576 : thestinger/rust/gc, r=pcwalton
This isn't very useful yet, but it does replace most functionality of `@T`. The `Mut<T>` type will make it unnecessary to have a `GcMut<T>` so I haven't included one. Obviously it doesn't work for trait objects but that needs to be figured out for `Rc<T>` too.
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index e0908dcb290..ffa91df4e8a 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -133,6 +133,7 @@ pub mod owned;
 pub mod managed;
 pub mod borrow;
 pub mod rc;
+pub mod gc;
 
 
 /* Core language traits */