]> git.lizzy.rs Git - rust.git/blob - src/test/ui/proc-macro/issue-36935.stderr
Rollup merge of #86478 - ehuss:future-incompat-test, r=oli-obk
[rust.git] / src / test / ui / proc-macro / issue-36935.stderr
1 error[E0428]: the name `Baz` is defined multiple times
2   --> $DIR/issue-36935.rs:7: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:6: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`.