]> git.proxmox.com Git - rustc.git/blob - src/test/ui/error-codes/E0599.stderr
New upstream version 1.25.0+dfsg1
[rustc.git] / src / test / ui / error-codes / E0599.stderr
1 error[E0599]: no associated item named `NotEvenReal` found for type `Foo` in the current scope
2 --> $DIR/E0599.rs:14:15
3 |
4 11 | struct Foo;
5 | ----------- associated item `NotEvenReal` not found for this
6 ...
7 14 | || if let Foo::NotEvenReal() = Foo {}; //~ ERROR E0599
8 | ^^^^^^^^^^^^^^^^^^ associated item not found in `Foo`
9
10 error: aborting due to previous error
11