13 lines
455 B
Plaintext
13 lines
455 B
Plaintext
|
error[E0599]: no method named `kaname` found for type `Homura` in the current scope
|
||
|
--> $DIR/issue-19692.rs:14:40
|
||
|
|
|
||
|
LL | struct Homura;
|
||
|
| -------------- method `kaname` not found for this
|
||
|
...
|
||
|
LL | let Some(ref madoka) = Some(homura.kaname()); //~ ERROR no method named `kaname` found
|
||
|
| ^^^^^^
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0599`.
|