summaryrefslogtreecommitdiffstats
path: root/src/test/ui/coherence/coherence-with-closure.stderr
blob: d2ca63fa1469172d2501cf494b6799b6da032f6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
error[E0119]: conflicting implementations of trait `Trait` for type `Wrapper<OpaqueClosure>`
  --> $DIR/coherence-with-closure.rs:12:1
   |
LL | impl Trait for Wrapper<OpaqueClosure> {}
   | ------------------------------------- first implementation here
LL |
LL | impl<T: Sync> Trait for Wrapper<T> {}
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Wrapper<OpaqueClosure>`

error: cannot implement trait on type alias impl trait
  --> $DIR/coherence-with-closure.rs:10:24
   |
LL | impl Trait for Wrapper<OpaqueClosure> {}
   |                        ^^^^^^^^^^^^^
   |
note: type alias impl trait defined here
  --> $DIR/coherence-with-closure.rs:3:22
   |
LL | type OpaqueClosure = impl Sized;
   |                      ^^^^^^^^^^

error: aborting due to 2 previous errors

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