rust/tests/ui/methods/method-not-found-on-struct.stderr
2026-01-18 06:23:47 +01:00

12 lines
467 B
Text

error[E0599]: no method named `kaname` found for struct `Homura` in the current scope
--> $DIR/method-not-found-on-struct.rs:6:40
|
LL | struct Homura;
| ------------- method `kaname` not found for this struct
...
LL | let Some(ref madoka) = Some(homura.kaname());
| ^^^^^^ method not found in `Homura`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0599`.