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