blob: b88780876db064c7397d7abd10c05c354041eb61 [file] [log] [blame] [edit]
macro_rules! foo {
( $f:path ) => {{
let _: usize = $f; //~ERROR
}};
}
struct Baz;
fn main() {
foo!(Baz);
}