summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-103202.rs
blob: 469d9d7c860cafff6b217253754a2462b2b5247d (plain)
1
2
3
4
5
6
7
struct S {}

impl S {
    fn f(self: &S::x) {} //~ ERROR ambiguous associated type
}

fn main() {}