]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/no-send-res-ports.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / no-send-res-ports.stderr
index e4c57c04e7269d468d1be7a12761bf8a914e2266..249c2fe2fa74efe3aee0f1cce2ea6165293b3beb 100644 (file)
@@ -1,17 +1,12 @@
 error[E0277]: `Rc<()>` cannot be sent between threads safely
   --> $DIR/no-send-res-ports.rs:25:5
    |
-LL |       thread::spawn(move|| {
-   |  _____^^^^^^^^^^^^^_-
-   | |     |
-   | |     `Rc<()>` cannot be sent between threads safely
-LL | |
-LL | |         let y = x;
-LL | |         println!("{:?}", y);
-LL | |     });
-   | |_____- within this `[closure@$DIR/no-send-res-ports.rs:25:19: 29:6]`
+LL |     thread::spawn(move|| {
+   |     ^^^^^^^^^^^^^ ------ within this `[closure@$DIR/no-send-res-ports.rs:25:19: 25:25]`
+   |     |
+   |     `Rc<()>` cannot be sent between threads safely
    |
-   = help: within `[closure@$DIR/no-send-res-ports.rs:25:19: 29:6]`, the trait `Send` is not implemented for `Rc<()>`
+   = help: within `[closure@$DIR/no-send-res-ports.rs:25:19: 25:25]`, the trait `Send` is not implemented for `Rc<()>`
 note: required because it appears within the type `Port<()>`
   --> $DIR/no-send-res-ports.rs:5:8
    |
@@ -25,13 +20,8 @@ LL |     struct Foo {
 note: required because it's used within this closure
   --> $DIR/no-send-res-ports.rs:25:19
    |
-LL |       thread::spawn(move|| {
-   |  ___________________^
-LL | |
-LL | |         let y = x;
-LL | |         println!("{:?}", y);
-LL | |     });
-   | |_____^
+LL |     thread::spawn(move|| {
+   |                   ^^^^^^
 note: required by a bound in `spawn`
   --> $SRC_DIR/std/src/thread/mod.rs:LL:COL
    |