diff options
| author | Flavio Percoco <flaper87@gmail.com> | 2014-03-10 22:55:15 +0100 |
|---|---|---|
| committer | Flavio Percoco <flaper87@gmail.com> | 2014-03-20 10:16:55 +0100 |
| commit | 710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2 (patch) | |
| tree | 8d621031b1769b61afca403aa6e507fb9c83356e /src/libstd/lib.rs | |
| parent | b85d5f1f9a873e706bd17be843cd54f55dcff211 (diff) | |
| download | rust-710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2.tar.gz rust-710f13f0ad8f41c4c3d5de96b0d96ee4dea4c8b2.zip | |
Add Unsafe<T> type
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 3 |
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; } |
