2022-06-25 10:42:23 -07: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 15:55:56 -03:00
|
|
|
|
|
|
|
|
LL | impl C for u32 {}
|
2023-01-12 20:15:00 +00:00
|
|
|
| ^^^
|
2021-10-22 15:55:56 -03:00
|
|
|
|
|
2021-10-01 13:05:17 +00:00
|
|
|
note: multiple `impl`s satisfying `u32: C` found
|
2022-01-30 18:55:22 -03: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 15:55:56 -03:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0283`.
|