summaryrefslogtreecommitdiffstats
path: root/src/test/ui/check-cfg/no-values.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/check-cfg/no-values.rs')
-rw-r--r--src/test/ui/check-cfg/no-values.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/check-cfg/no-values.rs b/src/test/ui/check-cfg/no-values.rs
deleted file mode 100644
index 8c80f56cb..000000000
--- a/src/test/ui/check-cfg/no-values.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// Check that we detect unexpected value when none are allowed
-//
-// check-pass
-// compile-flags: --check-cfg=values(test) --check-cfg=values(feature) -Z unstable-options
-
-#[cfg(feature = "foo")]
-//~^ WARNING unexpected `cfg` condition value
-fn do_foo() {}
-
-#[cfg(test = "foo")]
-//~^ WARNING unexpected `cfg` condition value
-fn do_foo() {}
-
-fn main() {}