mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
13 lines
450 B
Plaintext
13 lines
450 B
Plaintext
error[E0599]: no method named `kaname` found for struct `Homura` in the current scope
|
|
--> $DIR/issue-19692.rs:4: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 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0599`.
|