about summary refs log tree commit diff
path: root/src/driver
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-14 15:20:14 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-21 16:16:21 -0800
commit7b73ec469878e428c789b77320b3f8dc8d974d22 (patch)
tree297c1f66334f03df5b0da3f2ea37bfb00a63453e /src/driver
parent94ca8a361026d1a622a961e8dc8cacc331ed1ac3 (diff)
downloadrust-7b73ec469878e428c789b77320b3f8dc8d974d22.tar.gz
rust-7b73ec469878e428c789b77320b3f8dc8d974d22.zip
Tie stability attributes to feature gates
Diffstat (limited to 'src/driver')
-rw-r--r--src/driver/driver.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/driver/driver.rs b/src/driver/driver.rs
index 5f086280a65..6e436ec41d5 100644
--- a/src/driver/driver.rs
+++ b/src/driver/driver.rs
@@ -8,7 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-#![allow(unstable)]
+#![allow(unknown_features)]
+#![feature(unnamed_feature)]
 
 #[cfg(rustdoc)]
 extern crate "rustdoc" as this;