Files
rust/tests/ui/proc-macro/derive-helper-legacy-spurious.rs
2025-08-14 15:28:35 +02:00

13 lines
198 B
Rust

//@ proc-macro: test-macros.rs
#![dummy] //~ ERROR cannot find attribute `dummy` in this scope
#[macro_use]
extern crate test_macros;
#[derive(Empty)]
#[empty_helper]
struct Foo {}
fn main() {}