1
Fork 0

core: Inherit the ty module

This commit is contained in:
Alex Crichton 2014-04-30 20:26:12 -07:00
parent ead6e16a60
commit 2ad98fbb27
3 changed files with 2 additions and 2 deletions

View file

@ -32,3 +32,4 @@ pub mod ptr;
pub mod kinds;
pub mod ops;
pub mod ty;

View file

@ -135,6 +135,7 @@ extern crate core;
#[cfg(not(test))] pub use kinds = core::kinds;
#[cfg(not(test))] pub use ops = core::ops;
#[cfg(not(test))] pub use ty = core::ty;
pub use core::cast;
pub use core::intrinsics;
@ -196,7 +197,6 @@ pub mod strbuf;
pub mod ascii;
pub mod owned;
mod managed;
mod reference;
pub mod rc;
@ -206,7 +206,6 @@ pub mod gc;
/* Core language traits */
#[cfg(not(test))] pub mod cmp;
#[cfg(not(test))] pub mod ty;
#[cfg(not(test))] pub mod owned;