rust/src/test/ui/proc-macro/load-panic.rs
2018-12-25 21:08:33 -07:00

11 lines
187 B
Rust

// aux-build:derive-panic.rs
// compile-flags:--error-format human
#[macro_use]
extern crate derive_panic;
#[derive(A)]
//~^ ERROR: proc-macro derive panicked
struct Foo;
fn main() {}