Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
proc-macro
/
derive-bad.rs
blob: c8f3a77ea4c5f1bf2cd3fdfaa893e87626699325 [
file
] [
log
] [
blame
] [
edit
]
//@ aux-build:derive-bad.rs
#[
macro_use
]
extern
crate derive_bad
;
#[
derive
(
A
)]
//~^ ERROR proc-macro derive produced unparsable tokens
//~| ERROR expected `:`, found `}`
struct
A
;
//~ ERROR the name `A` is defined multiple times
fn
main
()
{}