diff options
| author | Urgau <urgau@numericable.fr> | 2024-04-07 00:43:00 +0200 |
|---|---|---|
| committer | Urgau <urgau@numericable.fr> | 2024-04-07 01:16:45 +0200 |
| commit | c4a97d9407556081c5a8d8927ef86529b3bf4572 (patch) | |
| tree | 9e67d7ac49de968118ae81117ed6785df5c349d6 /tests/ui/macros/macro-outer-attributes.rs | |
| parent | 3f10032eb04a58d6d54caef0318f705042ca0ba1 (diff) | |
| download | rust-c4a97d9407556081c5a8d8927ef86529b3bf4572.tar.gz rust-c4a97d9407556081c5a8d8927ef86529b3bf4572.zip | |
Unify all the always-false cfgs under the `FALSE` cfg
Diffstat (limited to 'tests/ui/macros/macro-outer-attributes.rs')
| -rw-r--r-- | tests/ui/macros/macro-outer-attributes.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/macros/macro-outer-attributes.rs b/tests/ui/macros/macro-outer-attributes.rs index 0752f7e3153..8c79683f49a 100644 --- a/tests/ui/macros/macro-outer-attributes.rs +++ b/tests/ui/macros/macro-outer-attributes.rs @@ -5,11 +5,11 @@ macro_rules! test { ($nm:ident, $i:item) => (mod $nm { #[$a] $i }); } test!(a, - #[cfg(qux)], + #[cfg(FALSE)], pub fn bar() { }); test!(b, - #[cfg(not(qux))], + #[cfg(not(FALSE))], pub fn bar() { }); // test1!(#[bar]) |
