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

13 lines
409 B
Plaintext
Raw Normal View History

2018-08-08 14:28:26 +02:00
error[E0573]: expected type, found variant `foo::Foo::FooV`
2018-12-25 08:56:47 -07:00
--> $DIR/issue-30535.rs:6:8
2018-08-08 14:28:26 +02:00
|
LL | _: foo::Foo::FooV //~ ERROR expected type, found variant `foo::Foo::FooV`
| ^^^^^^^^^^^^^^
| |
| not a type
| help: try using the variant's enum: `foo::Foo`
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
For more information about this error, try `rustc --explain E0573`.