summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/coherence/trait_ref_is_knowable-norm-overflow.stderr
blob: 5d5f325e4b4738c946637c6833096c7f4b18e372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0119]: conflicting implementations of trait `Trait` for type `<LocalTy as Overflow>::Assoc`
  --> $DIR/trait_ref_is_knowable-norm-overflow.rs:17:1
   |
LL | impl<T: Copy> Trait for T {}
   | ------------------------- first implementation here
LL | struct LocalTy;
LL | impl Trait for <LocalTy as Overflow>::Assoc {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `<LocalTy as Overflow>::Assoc`

error: aborting due to previous error

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