rust/tests/ui/issues/issue-39848.rs
2023-01-11 09:32:08 +00:00

10 lines
173 B
Rust

macro_rules! get_opt {
($tgt:expr, $field:ident) => {
if $tgt.has_$field() {} //~ ERROR expected `{`, found `foo`
}
}
fn main() {
get_opt!(bar, foo);
}