1
Fork 0

fix fallout

This commit is contained in:
Jorge Aparicio 2015-01-10 21:50:07 -05:00
parent 9fdc0effd2
commit f9865eac18
31 changed files with 118 additions and 43 deletions

View file

@ -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;
}