13 lines
414 B
Plaintext
13 lines
414 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/universal-two-impl-traits.rs:15:9
|
|
|
|
|
LL | a = y; //~ ERROR mismatched
|
|
| ^ expected type parameter, found a different type parameter
|
|
|
|
|
= note: expected type `impl Debug` (type parameter)
|
|
found type `impl Debug` (type parameter)
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|