2024-09-11 16:57:04 -05:00
|
|
|
error[E0119]: conflicting implementations of trait `Into<T>` for type `Foo`
|
2023-09-20 14:41:19 -05:00
|
|
|
--> $DIR/coherence-treats-tait-ambig.rs:7:1
|
2023-06-18 17:10:07 -05:00
|
|
|
|
|
|
|
|
LL | impl Into<T> for Foo {
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: conflicting implementation in crate `core`:
|
|
|
|
- impl<T, U> Into<U> for T
|
|
|
|
where U: From<T>;
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-06-18 17:10:07 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|