Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-39848.rs
blob: 2a059120e8175460025cce84ffc6137aa08498c9 [
file
] [
log
] [
blame
] [
edit
]
macro_rules
!
get_opt
{
(
$tgt
:
expr
,
$field
:
ident
)
=>
{
if
$tgt
.
has_$field
()
{}
//~ ERROR expected `{`, found identifier `foo`
}
}
fn
main
()
{
get_opt
!(
bar
,
foo
);
}