2017-12-10 13:47:55 -06:00
|
|
|
error[E0599]: no variant named `PIE` found for type `Delicious` in the current scope
|
|
|
|
--> $DIR/issue-22933-2.rs:14:44
|
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
11 | enum Delicious {
|
2017-12-10 13:47:55 -06:00
|
|
|
| -------------- variant `PIE` not found here
|
|
|
|
...
|
|
|
|
14 | ApplePie = Delicious::Apple as isize | Delicious::PIE as isize,
|
|
|
|
| ^^^^^^^^^^^^^^ variant not found in `Delicious`
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0599"
|