rust/src/test/ui/kindck/kindck-send-unsafe.stderr

15 lines
546 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0277]: `*mut &'a isize` cannot be sent between threads safely
2018-12-25 15:56:47 +00:00
--> $DIR/kindck-send-unsafe.rs:6:5
2018-08-08 12:28:26 +00:00
|
LL | fn assert_send<T:Send>() { }
| ----------- ---- required by this bound in `assert_send`
...
2018-08-08 12:28:26 +00:00
LL | assert_send::<*mut &'a isize>();
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ `*mut &'a isize` cannot be sent between threads safely
|
= help: the trait `std::marker::Send` is not implemented for `*mut &'a isize`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0277`.