about summary refs log tree commit diff
path: root/src/test/compile-fail/lint-uppercase-variables.rs
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-16 23:35:44 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-17 16:38:04 -0800
commit1f46ae285d40a79867457f49626a4fc5f11cedd5 (patch)
tree720c631bc5a2c33c52ae4363f828291432246755 /src/test/compile-fail/lint-uppercase-variables.rs
parent3e38926ff40223031c710cc09c9a4a27d00bd813 (diff)
downloadrust-1f46ae285d40a79867457f49626a4fc5f11cedd5.tar.gz
rust-1f46ae285d40a79867457f49626a4fc5f11cedd5.zip
Add allow(unstable) to tests that need it
Diffstat (limited to 'src/test/compile-fail/lint-uppercase-variables.rs')
-rw-r--r--src/test/compile-fail/lint-uppercase-variables.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/test/compile-fail/lint-uppercase-variables.rs b/src/test/compile-fail/lint-uppercase-variables.rs
index 9317e465a7a..d9f899ede04 100644
--- a/src/test/compile-fail/lint-uppercase-variables.rs
+++ b/src/test/compile-fail/lint-uppercase-variables.rs
@@ -11,6 +11,7 @@
 // ignore-tidy-linelength
 
 #![allow(dead_code)]
+#![allow(unstable)]
 #![deny(non_snake_case)]
 
 use std::io::File;