]> git.proxmox.com Git - rustc.git/blob - tests/ui/proc-macro/issue-36935.stderr
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / proc-macro / issue-36935.stderr
1 error[E0428]: the name `Baz` is defined multiple times
2 --> $DIR/issue-36935.rs:8:1
3 |
4 LL | struct Baz {
5 | ^^^^^^^^^^
6 | |
7 | `Baz` redefined here
8 | previous definition of the type `Baz` here
9 |
10 = note: `Baz` must be defined only once in the type namespace of this module
11
12 error: proc-macro derive panicked
13 --> $DIR/issue-36935.rs:7:20
14 |
15 LL | #[derive(Identity, Panic)]
16 | ^^^^^
17 |
18 = help: message: panic-derive
19
20 error: aborting due to 2 previous errors
21
22 For more information about this error, try `rustc --explain E0428`.