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 12:28:26 +00:00
error[E0573]: expected type, found variant `foo::Foo::FooV`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-30535.rs:6:8
2018-08-08 12:28:26 +00:00
|
2019-03-09 12:03:44 +00:00
LL | _: foo::Foo::FooV
| ^^^^^^^^^^^^^^
| |
| not a type
| help: try using the variant's enum: `foo::Foo`
2018-08-08 12:28:26 +00:00
error: aborting due to previous error
2019-10-09 12:19:48 +00:00
For more information about this error, try `rustc --explain E0573`.