about summary refs log tree commit diff
path: root/src/libstd/lib.rs
diff options
context:
space:
mode:
authorFlavio Percoco <flaper87@gmail.com>2014-03-10 22:55:15 +0100
committerFlavio Percoco <flaper87@gmail.com>2014-03-20 10:16:55 +0100
commit710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2 (patch)
tree8d621031b1769b61afca403aa6e507fb9c83356e /src/libstd/lib.rs
parentb85d5f1f9a873e706bd17be843cd54f55dcff211 (diff)
downloadrust-710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2.tar.gz
rust-710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2.zip
Add Unsafe<T> type
Diffstat (limited to 'src/libstd/lib.rs')
-rw-r--r--src/libstd/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index c6a1d710a52..73be83c254d 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -83,6 +83,7 @@
 #[cfg(test)] pub use kinds = realstd::kinds;
 #[cfg(test)] pub use ops = realstd::ops;
 #[cfg(test)] pub use cmp = realstd::cmp;
+#[cfg(test)] pub use ty = realstd::ty;
 
 pub mod macros;
 
@@ -138,6 +139,7 @@ pub mod gc;
 #[cfg(not(test))] pub mod kinds;
 #[cfg(not(test))] pub mod ops;
 #[cfg(not(test))] pub mod cmp;
+#[cfg(not(test))] pub mod ty;
 
 
 /* Common traits */
@@ -226,5 +228,6 @@ mod std {
     pub use rt;
     pub use str;
     pub use to_str;
+    pub use ty;
     pub use unstable;
 }