rust/tests/ui/impl-trait/coherence-treats-tait-ambig.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
420 B
Plaintext
Raw Normal View History

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