]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-3099-a.stderr
Auto merge of #54624 - arielb1:evaluate-outlives, r=nikomatsakis
[rust.git] / src / test / ui / issues / issue-3099-a.stderr
1 error[E0428]: the name `a` is defined multiple times
2   --> $DIR/issue-3099-a.rs:13:1
3    |
4 LL | enum a { b, c }
5    | ------ previous definition of the type `a` here
6 LL | 
7 LL | enum a { d, e } //~ ERROR the name `a` is defined multiple times
8    | ^^^^^^ `a` redefined here
9    |
10    = note: `a` must be defined only once in the type namespace of this module
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0428`.