rustc/tests/ui/span/macro-span-replacement.rs
2023-08-02 10:33:26 +02:00

14 lines
170 B
Rust

// check-pass
#![warn(unused)]
macro_rules! m {
($a:tt $b:tt) => {
$b $a; //~ WARN struct `S` is never constructed
}
}
fn main() {
m!(S struct);
}