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