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

12 lines
394 B
Plaintext
Raw Normal View History

error[E0599]: no variant named `A` found for type `SomeEnum` in the current scope
--> $DIR/issue-23217.rs:12:9
|
11 | pub enum SomeEnum {
| ----------------- variant `A` not found here
12 | B = SomeEnum::A,
| ^^^^^^^^^^^ variant not found in `SomeEnum`
error: aborting due to previous error
2018-02-19 14:40:25 -06:00
If you want more information on this error, try using "rustc --explain E0599"