From 64d98f8ee037282c35007b64c2649055c56af1db Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:03 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/issues/issue-21763.stderr | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tests/ui/issues/issue-21763.stderr (limited to 'tests/ui/issues/issue-21763.stderr') diff --git a/tests/ui/issues/issue-21763.stderr b/tests/ui/issues/issue-21763.stderr new file mode 100644 index 000000000..04379f07b --- /dev/null +++ b/tests/ui/issues/issue-21763.stderr @@ -0,0 +1,20 @@ +error[E0277]: `Rc<()>` cannot be sent between threads safely + --> $DIR/issue-21763.rs:9:11 + | +LL | foo::, Rc<()>>>(); + | ^^^^^^^^^^^^^^^^^^^^^^^ `Rc<()>` cannot be sent between threads safely + | + = help: within `(Rc<()>, Rc<()>)`, the trait `Send` is not implemented for `Rc<()>` + = note: required because it appears within the type `(Rc<()>, Rc<()>)` + = note: required for `hashbrown::raw::RawTable<(Rc<()>, Rc<()>)>` to implement `Send` + = note: required because it appears within the type `HashMap, Rc<()>, RandomState>` + = note: required because it appears within the type `HashMap, Rc<()>>` +note: required by a bound in `foo` + --> $DIR/issue-21763.rs:6:11 + | +LL | fn foo() {} + | ^^^^ required by this bound in `foo` + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0277`. -- cgit v1.2.3