diff options
| author | bors <bors@rust-lang.org> | 2015-01-31 03:57:01 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2015-01-31 03:57:01 +0000 |
| commit | 474b324eda10440d6568ef872a7307d38e7de95b (patch) | |
| tree | 53fc5aaa615f1c6e5abd757e42a75b3d19ce3abb /src/libsyntax/lib.rs | |
| parent | 1d00c545ede609b9d43fdf9f252c15da5a66dac7 (diff) | |
| parent | e8fd9d3d0bf0f4974460337df29c0d3ceb514987 (diff) | |
| download | rust-474b324eda10440d6568ef872a7307d38e7de95b.tar.gz rust-474b324eda10440d6568ef872a7307d38e7de95b.zip | |
Auto merge of #21791 - alexcrichton:rollup, r=alexcrichton
Diffstat (limited to 'src/libsyntax/lib.rs')
| -rw-r--r-- | src/libsyntax/lib.rs | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index ff4c7b565cb..73424136cfb 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -16,7 +16,6 @@ #![crate_name = "syntax"] #![unstable(feature = "rustc_private")] -#![feature(staged_api)] #![staged_api] #![crate_type = "dylib"] #![crate_type = "rlib"] @@ -24,19 +23,21 @@ html_favicon_url = "http://www.rust-lang.org/favicon.ico", html_root_url = "http://doc.rust-lang.org/nightly/")] -#![allow(unknown_features)] -#![feature(slicing_syntax)] +#![cfg_attr(not(stage0), allow(unused_mut))] // NOTE: remove after stage0 snap + #![feature(box_syntax)] -#![feature(quote, unsafe_destructor)] -#![allow(unknown_features)] #![feature(int_uint)] #![feature(collections)] #![feature(core)] #![feature(hash)] +#![feature(int_uint)] #![feature(io)] #![feature(libc)] #![feature(os)] #![feature(path)] +#![feature(quote, unsafe_destructor)] #![feature(rustc_private)] +#![feature(slicing_syntax)] +#![feature(staged_api)] #![feature(std_misc)] #![feature(unicode)] |
