]> git.proxmox.com Git - rustc.git/blob - tests/ui/resolve/issue-103202.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / resolve / issue-103202.rs
1 struct S {}
2
3 impl S {
4 fn f(self: &S::x) {} //~ ERROR ambiguous associated type
5 }
6
7 fn main() {}