summaryrefslogtreecommitdiffstats
path: root/src/test/ui/kindck/kindck-send-owned.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/kindck/kindck-send-owned.rs')
-rw-r--r--src/test/ui/kindck/kindck-send-owned.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/kindck/kindck-send-owned.rs b/src/test/ui/kindck/kindck-send-owned.rs
new file mode 100644
index 000000000..65efb6904
--- /dev/null
+++ b/src/test/ui/kindck/kindck-send-owned.rs
@@ -0,0 +1,16 @@
+// Test which of the builtin types are considered sendable.
+
+fn assert_send<T:Send>() { }
+
+// owned content are ok
+fn test30() { assert_send::<Box<isize>>(); }
+fn test31() { assert_send::<String>(); }
+fn test32() { assert_send::<Vec<isize> >(); }
+
+// but not if they own a bad thing
+fn test40() {
+ assert_send::<Box<*mut u8>>();
+ //~^ ERROR `*mut u8` cannot be sent between threads safely
+}
+
+fn main() { }