]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-103202.rs
Rollup merge of #106638 - RalfJung:realstd, r=thomcc
[rust.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() {}