summary refs log tree commit diff
path: root/src/libsyntax/lib.rs
diff options
context:
space:
mode:
authorubsan <npmazzuca@gmail.com>2017-05-03 10:54:03 -0700
committerubsan <npmazzuca@gmail.com>2017-05-07 01:20:15 -0700
commit0be875827fe64412f6c0eedc8f775f57137e7c55 (patch)
tree7f38ced0fca141a5bbb9283c57ce5398250115a6 /src/libsyntax/lib.rs
parent8305394b4c32c2576bb02a026c05f01c96f46d92 (diff)
downloadrust-0be875827fe64412f6c0eedc8f775f57137e7c55.tar.gz
rust-0be875827fe64412f6c0eedc8f775f57137e7c55.zip
fix the easy features in libsyntax
Diffstat (limited to 'src/libsyntax/lib.rs')
-rw-r--r--src/libsyntax/lib.rs7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs
index 86ee1c5336d..89c67b88cbd 100644
--- a/src/libsyntax/lib.rs
+++ b/src/libsyntax/lib.rs
@@ -24,20 +24,15 @@
        test(attr(deny(warnings))))]
 #![deny(warnings)]
 
-#![feature(associated_consts)]
-#![feature(const_fn)]
-#![feature(optin_builtin_traits)]
 #![feature(rustc_private)]
 #![feature(staged_api)]
-#![feature(str_escape)]
 #![feature(unicode)]
 #![feature(rustc_diagnostic_macros)]
-#![feature(specialization)]
 #![feature(i128_type)]
 
 extern crate serialize;
 #[macro_use] extern crate log;
-#[macro_use] #[no_link] extern crate rustc_bitflags;
+#[macro_use] extern crate bitflags;
 extern crate std_unicode;
 pub extern crate rustc_errors as errors;
 extern crate syntax_pos;