Skip to content

Commit

Permalink
Rollup merge of #130605 - clubby789:change-test, r=jieyouxu
Browse files Browse the repository at this point in the history
Fix feature name in test

This is meant to test that the `box_patterns` feature isn't active due to the `cfg(FALSE)`, but uses the removed `box_syntax` feature. Fix this so it's testing what it should be.
  • Loading branch information
GuillaumeGomez committed Sep 20, 2024
2 parents 3e21426 + e9fcb7d commit f784c52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ui/cfg/cfg-false-feature.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#![feature(decl_macro)]
#![cfg(FALSE)]
#![feature(box_syntax)]
#![feature(box_patterns)]

macro mac() {} // OK

Expand Down

0 comments on commit f784c52

Please sign in to comment.