about summary refs log tree commit diff
path: root/tests/ui/issues/issue-43355.stderr
blob: 5a089cb3d8bbb1496f4bc4073070e6111207541d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0119]: conflicting implementations of trait `Trait1<Box<_>>` for type `A`
  --> $DIR/issue-43355.rs:15:1
   |
LL | impl<X, T> Trait1<X> for T where T: Trait2<X> {
   | --------------------------------------------- first implementation here
...
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 1 previous error

For more information about this error, try `rustc --explain E0119`.