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
|
|
|
|
|
2019-03-09 15:03:44 +03:00
|
|
|
LL | _: foo::Foo::FooV
|
2018-11-18 22:21:38 -08:00
|
|
|
| ^^^^^^^^^^^^^^
|
|
|
|
| |
|
|
|
|
| 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
|
|
|
|
|
2019-10-09 14:19:48 +02:00
|
|
|
For more information about this error, try `rustc --explain E0573`.
|