]> git.proxmox.com Git - rustc.git/blob - tests/ui/issues/issue-22933-2.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / issues / issue-22933-2.stderr
1 error[E0599]: no variant or associated item named `PIE` found for enum `Delicious` in the current scope
2 --> $DIR/issue-22933-2.rs:4:55
3 |
4 LL | enum Delicious {
5 | -------------- variant or associated item `PIE` not found for this enum
6 ...
7 LL | ApplePie = Delicious::Apple as isize | Delicious::PIE as isize,
8 | ^^^
9 | |
10 | variant or associated item not found in `Delicious`
11 | help: there is a variant with a similar name: `Pie`
12
13 error: aborting due to 1 previous error
14
15 For more information about this error, try `rustc --explain E0599`.