rust/tests/ui/resolve/issue-103202.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
99 B
Rust
Raw Normal View History

2022-10-19 02:17:46 +00:00
struct S {}
impl S {
fn f(self: &S::x) {} //~ ERROR ambiguous associated type
}
fn main() {}