2023-10-19 11:06:43 -05:00
|
|
|
error[E0119]: conflicting implementations of trait `Trait` for type `Wrapper<OpaqueCoroutine>`
|
2024-04-11 08:15:34 -05:00
|
|
|
--> $DIR/coherence-with-coroutine.rs:22:1
|
2021-05-09 13:53:13 -05:00
|
|
|
|
|
2023-10-19 11:06:43 -05:00
|
|
|
LL | impl Trait for Wrapper<OpaqueCoroutine> {}
|
2021-05-09 13:53:13 -05:00
|
|
|
| --------------------------------------- first implementation here
|
|
|
|
LL | impl<T: Sync> Trait for Wrapper<T> {}
|
2023-10-19 11:06:43 -05:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Wrapper<OpaqueCoroutine>`
|
2021-05-09 13:53:13 -05:00
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2022-04-12 09:02:57 -05:00
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0119`.
|