]> git.proxmox.com Git - rustc.git/blob - tests/ui/resolve/issue-103202.rs
bump version to 1.79.0+dfsg1-1~bpo12+pve2
[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() {}