summaryrefslogtreecommitdiffstats
path: root/src/test/ui/proc-macro/expand-to-derive.rs
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:02:58 +0000
commit698f8c2f01ea549d77d7dc3338a12e04c11057b9 (patch)
tree173a775858bd501c378080a10dca74132f05bc50 /src/test/ui/proc-macro/expand-to-derive.rs
parentInitial commit. (diff)
downloadrustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.tar.xz
rustc-698f8c2f01ea549d77d7dc3338a12e04c11057b9.zip
Adding upstream version 1.64.0+dfsg1.upstream/1.64.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/test/ui/proc-macro/expand-to-derive.rs')
-rw-r--r--src/test/ui/proc-macro/expand-to-derive.rs34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/test/ui/proc-macro/expand-to-derive.rs b/src/test/ui/proc-macro/expand-to-derive.rs
new file mode 100644
index 000000000..ff2876e84
--- /dev/null
+++ b/src/test/ui/proc-macro/expand-to-derive.rs
@@ -0,0 +1,34 @@
+// check-pass
+// compile-flags: -Z span-debug --error-format human
+// aux-build:test-macros.rs
+
+#![feature(rustc_attrs)]
+
+#![no_std] // Don't load unnecessary hygiene information from std
+extern crate std;
+
+#[macro_use]
+extern crate test_macros;
+
+macro_rules! expand_to_derive {
+ ($item:item) => {
+ #[derive(Print)]
+ struct Foo {
+ #[cfg(FALSE)] removed: bool,
+ field: [bool; {
+ $item
+ 0
+ }]
+ }
+ };
+}
+
+expand_to_derive! {
+ #[cfg_attr(not(FALSE), rustc_dummy)]
+ struct Inner {
+ #[cfg(FALSE)] removed_inner_field: bool,
+ other_inner_field: u8,
+ }
+}
+
+fn main() {}