Sign in
fuchsia
/
third_party
/
rust
/
8429c9911b68afe9c0cc5804cb15fc22f03d913c
/
.
/
tests
/
ui
/
underscore-ident-matcher.rs
blob: 77ec70d43d54e4b5d85f68916f2f027dadbf198d [
file
] [
log
] [
blame
]
macro_rules
!
identity
{
(
$i
:
ident
)
=>
(
$i
)
}
fn
main
()
{
let
identity
!(
_
)
=
10
;
//~ ERROR no rules expected reserved identifier `_`
}