Sign in
fuchsia
/
third_party
/
rust
/
972fef232ec0dd7a3f42091aa6f36cd68aeb3eef
/
.
/
tests
/
ui
/
macros
/
recovery-forbidden.rs
blob: dc50d8b9dd86f09a422c49dd2f2c8f8a87b4b7e3 [
file
] [
log
] [
blame
]
//@ check-pass
macro_rules
!
dont_recover_here
{
(
$e
:
expr
)
=>
{
compile_error
!(
"Must not recover to single !1 expr"
);
};
(
not $a
:
literal
)
=>
{};
}
dont_recover_here
!
{
not
1
}
fn
main
()
{}