2019-05-22 01:09:58 +03:00
|
|
|
//@ aux-build:test-macros.rs
|
2022-09-12 22:42:04 +00:00
|
|
|
//@ needs-unwind proc macro panics to report errors
|
2019-05-22 01:09:58 +03:00
|
|
|
|
|
|
|
#[macro_use]
|
|
|
|
extern crate test_macros;
|
|
|
|
|
|
|
|
#[derive(Identity, Panic)] //~ ERROR proc-macro derive panicked
|
|
|
|
struct Baz {
|
2020-03-17 11:30:53 +01:00
|
|
|
//~^ ERROR the name `Baz` is defined multiple times
|
2019-05-22 01:09:58 +03:00
|
|
|
a: i32,
|
|
|
|
b: i32,
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|