2022-06-25 12:42:23 -05:00
|
|
|
error[E0283]: type annotations needed: cannot satisfy `u32: C`
|
2023-01-12 14:15:00 -06:00
|
|
|
--> $DIR/coherence-overlap-trait-alias.rs:15:12
|
2021-10-22 13:55:56 -05:00
|
|
|
|
|
|
|
|
LL | impl C for u32 {}
|
2023-01-12 14:15:00 -06:00
|
|
|
| ^^^
|
2021-10-22 13:55:56 -05:00
|
|
|
|
|
2021-10-01 08:05:17 -05:00
|
|
|
note: multiple `impl`s satisfying `u32: C` found
|
2022-01-30 15:55:22 -06:00
|
|
|
--> $DIR/coherence-overlap-trait-alias.rs:14:1
|
2021-10-01 08:05:17 -05:00
|
|
|
|
|
|
|
|
LL | impl<T: AB> C for T {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
LL | impl C for u32 {}
|
|
|
|
| ^^^^^^^^^^^^^^
|
2021-10-22 13:55:56 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|