mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
244 B
Rust
12 lines
244 B
Rust
// 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() {}
|