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