blob: 2ea2d3079dc00bc23d899c71b8a323d06ea162bb [file] [log] [blame] [edit]
//@ 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
}