]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-103202.rs
Rollup merge of #106692 - eggyal:mv-binary_heap.rs-binary_heap/mod.rs, r=Mark-Simulacrum
[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() {}