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() {}