core: Inherit the raw module

This commit is contained in:
Alex Crichton 2014-04-30 20:38:31 -07:00
parent 8ed728babb
commit 17cb238ee8
3 changed files with 3 additions and 2 deletions

View File

@ -39,4 +39,5 @@ pub mod container;
pub mod any;
pub mod finally;
pub mod raw;
pub mod char;

View File

@ -9,6 +9,7 @@
// except according to those terms.
#![allow(missing_doc)]
#![experimental]
//! Contains struct definitions for the layout of compiler built-in types.
//!

View File

@ -144,6 +144,7 @@ pub use core::container;
pub use core::intrinsics;
pub use core::mem;
pub use core::ptr;
pub use core::raw;
// Run tests with libgreen instead of libnative.
//
@ -255,8 +256,6 @@ pub mod reflect;
// Private APIs
#[unstable]
pub mod unstable;
#[experimental]
pub mod raw;
/* For internal use, not exported */