about summary refs log tree commit diff
path: root/tests/ui/pattern/rest-pat-syntactic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/pattern/rest-pat-syntactic.rs')
-rw-r--r--tests/ui/pattern/rest-pat-syntactic.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/pattern/rest-pat-syntactic.rs b/tests/ui/pattern/rest-pat-syntactic.rs
index 1de29e69b05..59c687bb5a8 100644
--- a/tests/ui/pattern/rest-pat-syntactic.rs
+++ b/tests/ui/pattern/rest-pat-syntactic.rs
@@ -11,7 +11,7 @@ macro_rules! accept_pat {
 
 accept_pat!(..);
 
-#[cfg(FALSE)]
+#[cfg(false)]
 fn rest_patterns() {
     // Top level:
     fn foo(..: u8) {}