summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/closure-bounds-subtype.stderr
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 12:19:13 +0000
commit218caa410aa38c29984be31a5229b9fa717560ee (patch)
treec54bd55eeb6e4c508940a30e94c0032fbd45d677 /tests/ui/closures/closure-bounds-subtype.stderr
parentReleasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff)
downloadrustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz
rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/ui/closures/closure-bounds-subtype.stderr')
-rw-r--r--tests/ui/closures/closure-bounds-subtype.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/tests/ui/closures/closure-bounds-subtype.stderr b/tests/ui/closures/closure-bounds-subtype.stderr
new file mode 100644
index 000000000..8ad8273fc
--- /dev/null
+++ b/tests/ui/closures/closure-bounds-subtype.stderr
@@ -0,0 +1,25 @@
+error[E0277]: `F` cannot be shared between threads safely
+ --> $DIR/closure-bounds-subtype.rs:13:22
+ |
+LL | take_const_owned(f);
+ | ---------------- ^ `F` cannot be shared between threads safely
+ | |
+ | required by a bound introduced by this call
+ |
+note: required by a bound in `take_const_owned`
+ --> $DIR/closure-bounds-subtype.rs:4:50
+ |
+LL | fn take_const_owned<F>(_: F) where F: FnOnce() + Sync + Send {
+ | ^^^^ required by this bound in `take_const_owned`
+help: use parentheses to call this type parameter
+ |
+LL | take_const_owned(f());
+ | ++
+help: consider further restricting this bound
+ |
+LL | fn give_owned<F>(f: F) where F: FnOnce() + Send + std::marker::Sync {
+ | +++++++++++++++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0277`.