mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
14 lines
170 B
Rust
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);
|
|
}
|