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

13 lines
391 B
Plaintext
Raw Normal View History

error[E0599]: no variant named `Baz` found for type `Foo` in the current scope
--> $DIR/issue-28971.rs:19:13
|
2018-02-23 03:42:32 +03:00
LL | enum Foo {
| -------- variant `Baz` not found here
...
2018-02-23 03:42:32 +03:00
LL | Foo::Baz(..) => (),
| ^^^^^^^^^^^^ variant not found in `Foo`
error: aborting due to previous error
2018-02-19 21:40:25 +01:00
If you want more information on this error, try using "rustc --explain E0599"