rust/src/test/ui/issues/issue-29124.rs
2020-01-08 08:05:31 -08:00

19 lines
239 B
Rust

struct Ret;
struct Obj;
impl Obj {
fn func() -> Ret {
Ret
}
}
fn func() -> Ret {
Ret
}
fn main() {
Obj::func.x();
//~^ ERROR no method named `x` found
func.x();
//~^ ERROR no method named `x` found
}