Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
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 `_`
}