mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +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);
|
|
}
|