2024-11-25 01:37:25 +00:00
|
|
|
//@ proc-macro: raw-ident.rs
|
2020-08-03 03:53:41 +00:00
|
|
|
|
|
|
|
#[macro_use] extern crate raw_ident;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
make_struct!(fn);
|
|
|
|
make_struct!(Foo);
|
|
|
|
make_struct!(await);
|
|
|
|
|
|
|
|
r#fn;
|
|
|
|
r#Foo;
|
|
|
|
Foo;
|
|
|
|
r#await;
|
|
|
|
|
|
|
|
make_bad_struct!(S); //~ ERROR expected one of
|
|
|
|
}
|