]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-103202.rs
Rollup merge of #106664 - chenyukang:yukang/fix-106597-remove-lseek, r=cuviper
[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() {}