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