about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/issue-36935.rs
blob: f809592d5f449c280902c85f07e4289822d3def6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// aux-build:test-macros.rs

#[macro_use]
extern crate test_macros;

#[derive(Identity, Panic)] //~ ERROR proc-macro derive panicked
struct Baz {
    a: i32,
    b: i32,
}

fn main() {}