diff options
| author | bors <bors@rust-lang.org> | 2014-07-01 10:11:34 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-07-01 10:11:34 +0000 |
| commit | 3deb2c1aa6bb255ebe62b294be5e3c580e19bb9b (patch) | |
| tree | 42c0dddb1304b5a3c0d5c60e0e9307bbe11627d9 /src/libstd/task.rs | |
| parent | 6ab7b6652ec916e37a2110bb2f579c7dc38b4560 (diff) | |
| parent | f7bb31a47a11ea85535024965432bcef90f407f7 (diff) | |
| download | rust-3deb2c1aa6bb255ebe62b294be5e3c580e19bb9b.tar.gz rust-3deb2c1aa6bb255ebe62b294be5e3c580e19bb9b.zip | |
auto merge of #15289 : aturon/rust/libstd-stability, r=alexcrichton
Earlier commits have established a baseline of `experimental` stability for all crates under the facade (so their contents are considered experimental within libstd). Since `experimental` is `allow` by default, we should use the same baseline stability for libstd itself. This commit adds `experimental` tags to all of the modules defined in `std`, and `unstable` to `std` itself.
Diffstat (limited to 'src/libstd/task.rs')
| -rw-r--r-- | src/libstd/task.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libstd/task.rs b/src/libstd/task.rs index 6492717d3ec..c20cbea0ae7 100644 --- a/src/libstd/task.rs +++ b/src/libstd/task.rs @@ -91,6 +91,8 @@ //! # } //! ``` +#![experimental] + use any::Any; use comm::channel; use io::{Writer, stdio}; |
