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

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

15 lines
464 B
Plaintext
Raw Normal View History

2022-10-18 21:17:46 -05:00
error[E0223]: ambiguous associated type
--> $DIR/issue-103202.rs:4:17
|
LL | fn f(self: &S::x) {}
| ^^^^
|
help: if there were a trait named `Example` with associated type `x` implemented for `S`, you could use the fully-qualified path
|
LL | fn f(self: &<S as Example>::x) {}
| ~~~~~~~~~~~~~~~~~
2022-10-18 21:17:46 -05:00
error: aborting due to 1 previous error
2022-10-18 21:17:46 -05:00
For more information about this error, try `rustc --explain E0223`.