mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
15 lines
569 B
Plaintext
15 lines
569 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/equating-projection-cyclically.rs:22:19
|
|
|
|
|
LL | x = transform(x);
|
|
| ^ expected inferred type, found associated type
|
|
|
|
|
= note: expected type `_`
|
|
found associated type `<_ as Test>::Assoc`
|
|
= help: consider constraining the associated type `<_ as Test>::Assoc` to `_`
|
|
= note: for more information, visit https://doc.rust-lang.org/book/ch19-03-advanced-traits.html
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|