rust/src/test/ui/issues/issue-23217.stderr

14 lines
427 B
Plaintext
Raw Normal View History

error[E0599]: no variant named `A` found for type `SomeEnum` in the current scope
2018-12-25 09:56:47 -06:00
--> $DIR/issue-23217.rs:2:9
|
2018-02-22 18:42:32 -06:00
LL | pub enum SomeEnum {
| ----------------- variant `A` not found here
2018-02-22 18:42:32 -06:00
LL | B = SomeEnum::A,
| ^^^^^^^^^^^ variant not found in `SomeEnum`
|
= note: did you mean `SomeEnum::B`?
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0599`.