diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-02-24 17:49:20 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2025-02-24 17:49:20 +0300 |
| commit | db6da1268e874dad5d727a916edfd7ebb615129c (patch) | |
| tree | 1bf461c0abb6e515d2e7a752ae1ff71d90b60c12 /tests/ui/proc-macro/derive-cfg-nested-tokens.rs | |
| parent | bb029a1d3f819471722f32dd9fcfa2c83d4f24f4 (diff) | |
| download | rust-db6da1268e874dad5d727a916edfd7ebb615129c.tar.gz rust-db6da1268e874dad5d727a916edfd7ebb615129c.zip | |
tests: Add regression test for derive token invalidation (#81099)
Diffstat (limited to 'tests/ui/proc-macro/derive-cfg-nested-tokens.rs')
| -rw-r--r-- | tests/ui/proc-macro/derive-cfg-nested-tokens.rs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/ui/proc-macro/derive-cfg-nested-tokens.rs b/tests/ui/proc-macro/derive-cfg-nested-tokens.rs new file mode 100644 index 00000000000..7d4e8d8373d --- /dev/null +++ b/tests/ui/proc-macro/derive-cfg-nested-tokens.rs @@ -0,0 +1,23 @@ +// A regression test for issue #81099. + +//@ check-pass +//@ proc-macro:test-macros.rs + +#![feature(stmt_expr_attributes)] +#![feature(proc_macro_hygiene)] + +#[macro_use] +extern crate test_macros; + +#[derive(Clone, Copy)] +struct S { + // `print_args` runs twice + // - on eagerly configured `S` (from `impl Copy`), only 11 should be printed + // - on non-configured `S` (from `struct S`), both 10 and 11 should be printed + field: [u8; #[print_attr] { + #[cfg(FALSE)] { 10 } + #[cfg(not(FALSE))] { 11 } + }], +} + +fn main() {} |
