Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
parser
/
bad-recover-kw-after-impl.rs
blob: 218cd7678594fd072dff910ad52dc5b670ffd4eb [
file
] [
log
] [
blame
]
// check-pass
// edition:2021
// for the `impl` + keyword test
macro_rules
!
impl_primitive
{
(
$ty
:
ty
)
=>
{
compile_error
!(
"whoops"
);
};
(
impl
async
)
=>
{};
}
impl_primitive
!(
impl
async
);
fn
main
()
{}