Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
rfcs
/
rfc-2294-if-let-guard
/
feature-gate-macro.rs
blob: 9d86ebc5331b056aff5d67c180b4a36adfc54e64 [
file
] [
log
] [
blame
]
// gate-test-if_let_guard
fn
main
()
{
macro_rules
!
use_expr
{
(
$e
:
expr
)
=>
{
match
()
{
()
if
$e
=>
{}
_
=>
{}
}
}
}
use_expr
!(
let
0
=
1
);
//~^ ERROR no rules expected keyword `let`
}