diff options
| author | bors <bors@rust-lang.org> | 2014-02-23 02:21:53 -0800 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-02-23 02:21:53 -0800 |
| commit | 551da0615764853153db944063ae2e271414a71b (patch) | |
| tree | 9086a265aa3f85969eb6180566e71a9d991d9e70 /src/libstd/lib.rs | |
| parent | c250c16f81f82a21295e421be7bd47c91d64cb2a (diff) | |
| parent | db111846b58253c723750be280a478ed7d27d879 (diff) | |
| download | rust-551da0615764853153db944063ae2e271414a71b.tar.gz rust-551da0615764853153db944063ae2e271414a71b.zip | |
auto merge of #12311 : brson/rust/unstable, r=alexcrichton
With the stability attributes we can put public-but unstable modules next to others, so this moves `intrinsics` and `raw` out of the `unstable` module (and marks both as `#[experimental]`).
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index d855aebdf3f..638f7b89469 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -194,7 +194,10 @@ pub mod reflect; // Private APIs #[unstable] pub mod unstable; - +#[experimental] +pub mod intrinsics; +#[experimental] +pub mod raw; /* For internal use, not exported */ |
