From 698f8c2f01ea549d77d7dc3338a12e04c11057b9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 14:02:58 +0200 Subject: Adding upstream version 1.64.0+dfsg1. Signed-off-by: Daniel Baumann --- src/test/ui/kindck/kindck-send-object.rs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/test/ui/kindck/kindck-send-object.rs (limited to 'src/test/ui/kindck/kindck-send-object.rs') diff --git a/src/test/ui/kindck/kindck-send-object.rs b/src/test/ui/kindck/kindck-send-object.rs new file mode 100644 index 000000000..6411e688b --- /dev/null +++ b/src/test/ui/kindck/kindck-send-object.rs @@ -0,0 +1,26 @@ +// Test which of the builtin types are considered sendable. The tests +// in this file all test the "kind" violates detected during kindck. +// See all `regions-bounded-by-send.rs` + +fn assert_send() { } +trait Dummy { } +trait Message : Send { } + +// careful with object types, who knows what they close over... + +fn object_ref_with_static_bound_not_ok() { + assert_send::<&'static (dyn Dummy + 'static)>(); + //~^ ERROR `(dyn Dummy + 'static)` cannot be shared between threads safely [E0277] +} + +fn box_object_with_no_bound_not_ok<'a>() { + assert_send::>(); + //~^ ERROR `dyn Dummy` cannot be sent between threads safely +} + +fn object_with_send_bound_ok() { + assert_send::<&'static (dyn Dummy + Sync)>(); + assert_send::>(); +} + +fn main() { } -- cgit v1.2.3