mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 19:26:37 +00:00
12 lines
130 B
Rust
12 lines
130 B
Rust
macro_rules! foo {
|
|
( $f:path ) => {{
|
|
let _: usize = $f; //~ERROR
|
|
}};
|
|
}
|
|
|
|
struct Baz;
|
|
|
|
fn main() {
|
|
foo!(Baz);
|
|
}
|