]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-29124.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-29124.rs
CommitLineData
0731742a
XL
1struct Ret;
2struct Obj;
54a0048b 3
0731742a
XL
4impl Obj {
5 fn func() -> Ret {
6 Ret
54a0048b
SL
7 }
8}
9
0731742a
XL
10fn func() -> Ret {
11 Ret
54a0048b
SL
12}
13
14fn main() {
0731742a 15 Obj::func.x();
dfeec247 16 //~^ ERROR no method named `x` found
54a0048b 17 func.x();
dfeec247 18 //~^ ERROR no method named `x` found
54a0048b 19}