rust/tests/ui/resolve/issue-30535.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
353 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
|
2019-03-09 15:03:44 +03:00
LL | _: 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
2019-10-09 14:19:48 +02:00
For more information about this error, try `rustc --explain E0573`.