rust/tests/ui/issues/issue-43355.stderr

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

15 lines
541 B
Plaintext
Raw Normal View History

error[E0119]: conflicting implementations of trait `Trait1<Box<_>>` for type `A`
2018-12-25 09:56:47 -06:00
--> $DIR/issue-43355.rs:13:1
2018-07-15 16:11:54 -05:00
|
LL | impl<X, T> Trait1<X> for T where T: Trait2<X> {
2022-02-13 09:27:59 -06:00
| -------------------------- first implementation here
2018-07-15 16:11:54 -05:00
...
LL | impl<X> Trait1<Box<X>> for A {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `A`
|
= note: downstream crates may implement trait `Trait2<std::boxed::Box<_>>` for type `A`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0119`.