mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-12 16:51:47 +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);
|
|
}
|