]> git.proxmox.com Git - rustc.git/blob - src/test/ui/kindck/kindck-send-unsafe.stderr
New upstream version 1.44.1+dfsg1
[rustc.git] / src / test / ui / kindck / kindck-send-unsafe.stderr
1 error[E0277]: `*mut &'a isize` cannot be sent between threads safely
2 --> $DIR/kindck-send-unsafe.rs:6:19
3 |
4 LL | fn assert_send<T:Send>() { }
5 | ---- required by this bound in `assert_send`
6 ...
7 LL | assert_send::<*mut &'a isize>();
8 | ^^^^^^^^^^^^^^ `*mut &'a isize` cannot be sent between threads safely
9 |
10 = help: the trait `std::marker::Send` is not implemented for `*mut &'a isize`
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0277`.