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

10 lines
245 B
Rust

//! regression test for <https://github.com/rust-lang/rust/issues/19692>
struct Homura;
fn akemi(homura: Homura) {
let Some(ref madoka) = Some(homura.kaname()); //~ ERROR no method named `kaname` found
madoka.clone();
}
fn main() { }