rust/tests/ui/impl-trait/auto-trait-coherence.next.stderr

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

13 lines
468 B
Plaintext
Raw Normal View History

2024-02-26 03:19:11 -06:00
error[E0119]: conflicting implementations of trait `AnotherTrait` for type `D<_>`
--> $DIR/auto-trait-coherence.rs:24:1
2021-05-09 13:53:13 -05:00
|
LL | impl<T: Send> AnotherTrait for T {}
| -------------------------------- first implementation here
...
LL | impl AnotherTrait for D<OpaqueType> {
2024-02-26 03:19:11 -06:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `D<_>`
2021-05-09 13:53:13 -05:00
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0119`.