]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/load-panic.rs
Merge commit '98e2b9f25b6db4b2680a3d388456d9f95cb28344' into clippyup
[rust.git] / src / test / ui / proc-macro / load-panic.rs
1 // aux-build:test-macros.rs
2
3 #[macro_use]
4 extern crate test_macros;
5
6 #[derive(Panic)]
7 //~^ ERROR: proc-macro derive panicked
8 struct Foo;
9
10 fn main() {}