about summary refs log tree commit diff
path: root/src/test/ui/check-cfg/allow-macro-cfg.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/check-cfg/allow-macro-cfg.rs')
-rw-r--r--src/test/ui/check-cfg/allow-macro-cfg.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/check-cfg/allow-macro-cfg.rs b/src/test/ui/check-cfg/allow-macro-cfg.rs
deleted file mode 100644
index 8016a4d190c..00000000000
--- a/src/test/ui/check-cfg/allow-macro-cfg.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// This test check that local #[allow(unexpected_cfgs)] works
-//
-// check-pass
-// compile-flags:--check-cfg=names() -Z unstable-options
-
-#[allow(unexpected_cfgs)]
-fn foo() {
-    if cfg!(FALSE) {}
-}
-
-fn main() {
-    #[allow(unexpected_cfgs)]
-    if cfg!(FALSE) {}
-}