summary refs log tree commit diff
path: root/src/test/ui/coherence-overlap-downstream.stderr
blob: c94ffd60d261feb2d901f8c10c8ae45eb296fb33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
error[E0119]: conflicting implementations of trait `Sweet`:
  --> $DIR/coherence-overlap-downstream.rs:18:1
   |
17 | impl<T:Sugar> Sweet for T { }
   | ------------------------- first implementation here
18 | impl<T:Fruit> Sweet for T { }
   | ^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation

error[E0119]: conflicting implementations of trait `Foo<_>` for type `i32`:
  --> $DIR/coherence-overlap-downstream.rs:24:1
   |
23 | impl<X, T> Foo<X> for T where T: Bar<X> {}
   | --------------------------------------- first implementation here
24 | impl<X> Foo<X> for i32 {}
   | ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `i32`
   |
   = note: downstream crates may implement trait `Bar<_>` for type `i32`

error: aborting due to 2 previous errors