mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
17 lines
245 B
Rust
17 lines
245 B
Rust
|
// aux-build:raw-ident.rs
|
||
|
|
||
|
#[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
|
||
|
}
|