From 218caa410aa38c29984be31a5229b9fa717560ee Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:19:13 +0200 Subject: Merging upstream version 1.68.2+dfsg1. Signed-off-by: Daniel Baumann --- tests/ui/traits/alias/cross-crate.stderr | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 tests/ui/traits/alias/cross-crate.stderr (limited to 'tests/ui/traits/alias/cross-crate.stderr') diff --git a/tests/ui/traits/alias/cross-crate.stderr b/tests/ui/traits/alias/cross-crate.stderr new file mode 100644 index 000000000..ae9d7d0a9 --- /dev/null +++ b/tests/ui/traits/alias/cross-crate.stderr @@ -0,0 +1,31 @@ +error[E0277]: `Rc` cannot be sent between threads safely + --> $DIR/cross-crate.rs:14:17 + | +LL | use_alias::>(); + | ^^^^^^^ `Rc` cannot be sent between threads safely + | + = help: the trait `Send` is not implemented for `Rc` + = note: required for `Rc` to implement `SendSync` +note: required by a bound in `use_alias` + --> $DIR/cross-crate.rs:10:17 + | +LL | fn use_alias() {} + | ^^^^^^^^ required by this bound in `use_alias` + +error[E0277]: `Rc` cannot be shared between threads safely + --> $DIR/cross-crate.rs:14:17 + | +LL | use_alias::>(); + | ^^^^^^^ `Rc` cannot be shared between threads safely + | + = help: the trait `Sync` is not implemented for `Rc` + = note: required for `Rc` to implement `SendSync` +note: required by a bound in `use_alias` + --> $DIR/cross-crate.rs:10:17 + | +LL | fn use_alias() {} + | ^^^^^^^^ required by this bound in `use_alias` + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0277`. -- cgit v1.2.3