diff options
| author | Jorge Aparicio <japaricious@gmail.com> | 2015-01-10 21:50:07 -0500 |
|---|---|---|
| committer | Jorge Aparicio <japaricious@gmail.com> | 2015-01-30 10:37:44 -0500 |
| commit | f9865eac185ef2af4df661442d5d3bd2698b725f (patch) | |
| tree | b4630177edd59031f520ab675c61411f34be2178 /src/libstd/lib.rs | |
| parent | 9fdc0effd292b097ae487ec4d927ca15102c5791 (diff) | |
| download | rust-f9865eac185ef2af4df661442d5d3bd2698b725f.tar.gz rust-f9865eac185ef2af4df661442d5d3bd2698b725f.zip | |
fix fallout
Diffstat (limited to 'src/libstd/lib.rs')
| -rw-r--r-- | src/libstd/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index a016ba8fb0c..534ece52ff5 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -123,6 +123,9 @@ #![feature(rand)] #![feature(hash)] #![cfg_attr(test, feature(test))] +#![allow(unstable)] +// NOTE(stage0): remove cfg_attr after a snapshot +#![cfg_attr(not(stage0), allow(unused_mut))] // Don't link to std. We are std. #![no_std] @@ -310,4 +313,6 @@ mod std { pub use slice; pub use boxed; // used for vec![] + // for-loops + pub use iter; } |
