Sign in
◑
Theme
rust
/
rust
/
aec7c2a7e32980e4eeceb4792fa91a3221bf7c7b
/
.
/
tests
/
ui
/
methods
/
method-not-found-on-struct.rs
blob: b2a457ed19e5c3124502ecfc3475a40198d61cea [
file
]
//! 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
()
{
}