mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
12ddf77811
Fix #46585.
15 lines
462 B
Plaintext
15 lines
462 B
Plaintext
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) {}
|
|
| ~~~~~~~~~~~~~~~~~
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0223`.
|