Sign in
fuchsia
/
third_party
/
rust
/
79f0a97783fa7622d7296a36010c8848643672df
/
.
/
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 `_`
}