rust/src/test/ui/impl-trait/universal-two-impl-traits.stderr
2018-03-26 07:39:38 +02:00

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`.