2022-11-10 04:21:11 +00:00
|
|
|
error[E0751]: found both positive and negative implementation of trait `Send` for type `TestType<_>`:
|
2020-01-25 20:30:19 +00:00
|
|
|
--> $DIR/coherence-conflicting-negative-trait-impl.rs:11:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-01-08 19:10:59 +00:00
|
|
|
LL | unsafe impl<T: MyTrait + 'static> Send for TestType<T> {}
|
|
|
|
| ------------------------------------------------------ positive implementation here
|
2022-06-08 18:07:59 +00:00
|
|
|
LL |
|
2018-08-08 12:28:26 +00:00
|
|
|
LL | impl<T: MyTrait> !Send for TestType<T> {}
|
2020-01-08 19:10:59 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ negative implementation here
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2022-11-10 04:21:11 +00:00
|
|
|
error[E0119]: conflicting implementations of trait `Send` for type `TestType<_>`
|
2020-01-08 19:10:59 +00:00
|
|
|
--> $DIR/coherence-conflicting-negative-trait-impl.rs:13:1
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2020-01-08 19:10:59 +00:00
|
|
|
LL | unsafe impl<T: MyTrait + 'static> Send for TestType<T> {}
|
|
|
|
| ------------------------------------------------------ first implementation here
|
2020-01-25 20:30:19 +00:00
|
|
|
...
|
2020-01-08 19:10:59 +00:00
|
|
|
LL | unsafe impl<T: 'static> Send for TestType<T> {}
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `TestType<_>`
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
2020-04-22 12:18:22 +00:00
|
|
|
Some errors have detailed explanations: E0119, E0751.
|
2020-01-08 19:10:59 +00:00
|
|
|
For more information about an error, try `rustc --explain E0119`.
|