summaryrefslogtreecommitdiffstats
path: root/tests/ui/generator/ref-upvar-not-send.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-06-07 05:48:48 +0000
commitef24de24a82fe681581cc130f342363c47c0969a (patch)
tree0d494f7e1a38b95c92426f58fe6eaa877303a86c /tests/ui/generator/ref-upvar-not-send.stderr
parentReleasing progress-linux version 1.74.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-ef24de24a82fe681581cc130f342363c47c0969a.tar.xz
rustc-ef24de24a82fe681581cc130f342363c47c0969a.zip
Merging upstream version 1.75.0+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/generator/ref-upvar-not-send.stderr')
-rw-r--r--tests/ui/generator/ref-upvar-not-send.stderr50
1 files changed, 0 insertions, 50 deletions
diff --git a/tests/ui/generator/ref-upvar-not-send.stderr b/tests/ui/generator/ref-upvar-not-send.stderr
deleted file mode 100644
index d6a2be977..000000000
--- a/tests/ui/generator/ref-upvar-not-send.stderr
+++ /dev/null
@@ -1,50 +0,0 @@
-error: generator cannot be sent between threads safely
- --> $DIR/ref-upvar-not-send.rs:15:17
- |
-LL | assert_send(move || {
- | _________________^
-LL | |
-LL | |
-LL | | yield;
-LL | | let _x = x;
-LL | | });
- | |_____^ generator is not `Send`
- |
- = help: the trait `Sync` is not implemented for `*mut ()`
-note: captured value is not `Send` because `&` references cannot be sent unless their referent is `Sync`
- --> $DIR/ref-upvar-not-send.rs:19:18
- |
-LL | let _x = x;
- | ^ has type `&*mut ()` which is not `Send`, because `*mut ()` is not `Sync`
-note: required by a bound in `assert_send`
- --> $DIR/ref-upvar-not-send.rs:6:19
- |
-LL | fn assert_send<T: Send>(_: T) {}
- | ^^^^ required by this bound in `assert_send`
-
-error: generator cannot be sent between threads safely
- --> $DIR/ref-upvar-not-send.rs:23:17
- |
-LL | assert_send(move || {
- | _________________^
-LL | |
-LL | |
-LL | | yield;
-LL | | let _y = y;
-LL | | });
- | |_____^ generator is not `Send`
- |
- = help: within `{generator@$DIR/ref-upvar-not-send.rs:23:17: 23:24}`, the trait `Send` is not implemented for `*mut ()`
-note: captured value is not `Send` because `&mut` references cannot be sent unless their referent is `Send`
- --> $DIR/ref-upvar-not-send.rs:27:18
- |
-LL | let _y = y;
- | ^ has type `&mut *mut ()` which is not `Send`, because `*mut ()` is not `Send`
-note: required by a bound in `assert_send`
- --> $DIR/ref-upvar-not-send.rs:6:19
- |
-LL | fn assert_send<T: Send>(_: T) {}
- | ^^^^ required by this bound in `assert_send`
-
-error: aborting due to 2 previous errors
-