2018-08-08 14:28:26 +02:00
|
|
|
error[E0277]: `dummy::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:23:11
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | Outer(TestType);
|
2019-09-15 21:58:20 -07:00
|
|
|
| ^^^^^^^^ `dummy::TestType` cannot be sent between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `Send` is not implemented for `dummy::TestType`
|
2021-07-17 11:13:50 -07:00
|
|
|
note: required by `Outer`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:10:1
|
|
|
|
|
|
|
|
|
LL | struct Outer<T: Send>(T);
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0277]: `dummy::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:23:5
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | Outer(TestType);
|
|
|
|
| ^^^^^^^^^^^^^^^ `dummy::TestType` cannot be sent between threads safely
|
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `Send` is not implemented for `dummy::TestType`
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `Outer`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:10:17
|
|
|
|
|
|
|
|
|
LL | struct Outer<T: Send>(T);
|
|
|
|
| ^^^^ required by this bound in `Outer`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0277]: `dummy1b::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:32:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | is_send(TestType);
|
2019-09-15 21:58:20 -07:00
|
|
|
| ^^^^^^^^ `dummy1b::TestType` cannot be sent between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: the trait `Send` is not implemented for `dummy1b::TestType`
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:16:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0277]: `dummy1c::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:40:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | is_send((8, TestType));
|
2019-09-15 21:58:20 -07:00
|
|
|
| ^^^^^^^^^^^^^ `dummy1c::TestType` cannot be sent between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: within `({integer}, dummy1c::TestType)`, the trait `Send` is not implemented for `dummy1c::TestType`
|
2018-08-08 14:28:26 +02:00
|
|
|
= note: required because it appears within the type `({integer}, dummy1c::TestType)`
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:16:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-10-27 13:42:20 -07:00
|
|
|
error[E0277]: `dummy2::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:48:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | is_send(Box::new(TestType));
|
2019-10-15 18:42:27 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
2020-09-02 10:40:56 +03:00
|
|
|
| expected an implementor of trait `Send`
|
2019-10-15 18:42:27 -07:00
|
|
|
| help: consider borrowing here: `&Box::new(TestType)`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: the trait bound `dummy2::TestType: Send` is not satisfied
|
|
|
|
= note: required because of the requirements on the impl of `Send` for `Unique<dummy2::TestType>`
|
|
|
|
= note: required because it appears within the type `Box<dummy2::TestType>`
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:16:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error[E0277]: `dummy3::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:56:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | is_send(Box::new(Outer2(TestType)));
|
2019-09-15 21:58:20 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ `dummy3::TestType` cannot be sent between threads safely
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= help: within `Outer2<dummy3::TestType>`, the trait `Send` is not implemented for `dummy3::TestType`
|
2021-03-30 13:37:30 -07:00
|
|
|
note: required because it appears within the type `Outer2<dummy3::TestType>`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:12:8
|
|
|
|
|
|
|
|
|
LL | struct Outer2<T>(T);
|
|
|
|
| ^^^^^^
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: required because of the requirements on the impl of `Send` for `Unique<Outer2<dummy3::TestType>>`
|
|
|
|
= note: required because it appears within the type `Box<Outer2<dummy3::TestType>>`
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_send`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:16:15
|
|
|
|
|
|
|
|
|
LL | fn is_send<T: Send>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `is_send`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
2019-10-27 13:42:20 -07:00
|
|
|
error[E0277]: `main::TestType` cannot be sent between threads safely
|
2020-01-08 06:39:38 -05:00
|
|
|
--> $DIR/negated-auto-traits-error.rs:66:13
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
|
LL | is_sync(Outer2(TestType));
|
2019-10-15 18:42:27 -07:00
|
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
| |
|
2020-09-02 10:40:56 +03:00
|
|
|
| expected an implementor of trait `Sync`
|
2019-10-15 18:42:27 -07:00
|
|
|
| help: consider borrowing here: `&Outer2(TestType)`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
2020-09-02 10:40:56 +03:00
|
|
|
= note: the trait bound `main::TestType: Sync` is not satisfied
|
2021-03-30 13:37:30 -07:00
|
|
|
note: required because of the requirements on the impl of `Sync` for `Outer2<main::TestType>`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:14:22
|
|
|
|
|
|
|
|
|
LL | unsafe impl<T: Send> Sync for Outer2<T> {}
|
|
|
|
| ^^^^ ^^^^^^^^^
|
2021-07-31 09:26:55 -07:00
|
|
|
note: required by a bound in `is_sync`
|
|
|
|
--> $DIR/negated-auto-traits-error.rs:17:15
|
|
|
|
|
|
|
|
|
LL | fn is_sync<T: Sync>(_: T) {}
|
|
|
|
| ^^^^ required by this bound in `is_sync`
|
2018-08-08 14:28:26 +02:00
|
|
|
|
|
|
|
error: aborting due to 7 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0277`.
|