Sign in
fuchsia
/
third_party
/
rust
/
8ae423e5e8db47b8233ad657b8d84247f94de179
/
.
/
tests
/
ui
/
issues
/
issue-39848.rs
blob: 2a059120e8175460025cce84ffc6137aa08498c9 [
file
]
macro_rules
!
get_opt
{
(
$tgt
:
expr
,
$field
:
ident
)
=>
{
if
$tgt
.
has_$field
()
{}
//~ ERROR expected `{`, found identifier `foo`
}
}
fn
main
()
{
get_opt
!(
bar
,
foo
);
}