about summary refs log tree commit diff
path: root/tests/ui/macros/macro-attributes.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/macros/macro-attributes.rs')
-rw-r--r--tests/ui/macros/macro-attributes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/macros/macro-attributes.rs b/tests/ui/macros/macro-attributes.rs
index 83290790766..976d2cbcccd 100644
--- a/tests/ui/macros/macro-attributes.rs
+++ b/tests/ui/macros/macro-attributes.rs
@@ -9,7 +9,7 @@ macro_rules! compiles_fine {
 
         // check that the attributes are recognised by requiring this
         // to be removed to avoid a compile error
-        #[cfg(FALSE)]
+        #[cfg(false)]
         static MISTYPED: () = "foo";
     }
 }