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