rust/src/test/ui/not-sync.stderr

70 lines
2.6 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0277]: `std::cell::Cell<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:8:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<Cell<i32>>();
| ^^^^^^^^^^^^^^^^^ `std::cell::Cell<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::cell::Cell<i32>`
error[E0277]: `std::cell::RefCell<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:10:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<RefCell<i32>>();
| ^^^^^^^^^^^^^^^^^^^^ `std::cell::RefCell<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::cell::RefCell<i32>`
error[E0277]: `std::rc::Rc<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:13:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<Rc<i32>>();
| ^^^^^^^^^^^^^^^ `std::rc::Rc<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::rc::Rc<i32>`
error[E0277]: `std::rc::Weak<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:15:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<Weak<i32>>();
| ^^^^^^^^^^^^^^^^^ `std::rc::Weak<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::rc::Weak<i32>`
error[E0277]: `std::sync::mpsc::Receiver<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:18:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<Receiver<i32>>();
| ^^^^^^^^^^^^^^^^^^^^^ `std::sync::mpsc::Receiver<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::sync::mpsc::Receiver<i32>`
error[E0277]: `std::sync::mpsc::Sender<i32>` cannot be shared between threads safely
2018-12-25 09:56:47 -06:00
--> $DIR/not-sync.rs:20:5
2018-08-08 07:28:26 -05:00
|
LL | fn test<T: Sync>() {}
| ---- ---- required by this bound in `test`
...
2018-08-08 07:28:26 -05:00
LL | test::<Sender<i32>>();
| ^^^^^^^^^^^^^^^^^^^ `std::sync::mpsc::Sender<i32>` cannot be shared between threads safely
|
= help: the trait `std::marker::Sync` is not implemented for `std::sync::mpsc::Sender<i32>`
error: aborting due to 6 previous errors
For more information about this error, try `rustc --explain E0277`.