2018-02-07 21:35:35 -06:00
|
|
|
error[E0599]: no associated item named `NotEvenReal` found for type `Foo` in the current scope
|
|
|
|
--> $DIR/E0599.rs:14:15
|
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | struct Foo;
|
2018-02-07 21:35:35 -06:00
|
|
|
| ----------- associated item `NotEvenReal` not found for this
|
|
|
|
...
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | || if let Foo::NotEvenReal() = Foo {}; //~ ERROR E0599
|
2018-02-07 21:35:35 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ associated item not found in `Foo`
|
|
|
|
|
|
|
|
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"
|