rust/src/test/ui/issue-23217.stderr
Andy Russell 9eb70c3cf5
use type name in E0599 enum variant suggestion
Also, rename the variable from "type_str" to "item_kind" to avoid
the ambiguity that caused this bug.
2018-06-02 16:58:49 -04:00

13 lines
428 B
Text

error[E0599]: no variant named `A` found for type `SomeEnum` in the current scope
--> $DIR/issue-23217.rs:12:9
|
LL | pub enum SomeEnum {
| ----------------- variant `A` not found here
LL | B = SomeEnum::A,
| ^^^^^^^^^^^ variant not found in `SomeEnum`
|
= note: did you mean `SomeEnum::B`?
error: aborting due to previous error
For more information about this error, try `rustc --explain E0599`.