blob: 50475a34226b4009f089d42f9a3bb1a660708d8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
//@ aux-build:test-macros.rs
//@ needs-unwind proc macro panics to report errors
#[macro_use]
extern crate test_macros;
#[derive(Panic)]
//~^ ERROR: proc-macro derive panicked
struct Foo;
fn main() {}
|