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