Sign in
android
/
toolchain
/
rustc
/
cd1aefd586783f162dd848e314bd6991a5ffe033
/
.
/
tests
/
ui
/
proc-macro
/
raw-ident.rs
blob: 03cb4571496e90318056b03a11b63c7e9f0b127d [
file
] [
log
] [
blame
]
// 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
}