summaryrefslogtreecommitdiffstats
path: root/tests/ui/generator/print/generator-print-verbose-2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/generator/print/generator-print-verbose-2.rs')
-rw-r--r--tests/ui/generator/print/generator-print-verbose-2.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/ui/generator/print/generator-print-verbose-2.rs b/tests/ui/generator/print/generator-print-verbose-2.rs
deleted file mode 100644
index e53a7ef8c..000000000
--- a/tests/ui/generator/print/generator-print-verbose-2.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-// compile-flags: -Zverbose
-
-// Same as test/ui/generator/not-send-sync.rs
-#![feature(generators)]
-#![feature(negative_impls)]
-
-struct NotSend;
-struct NotSync;
-
-impl !Send for NotSend {}
-impl !Sync for NotSync {}
-
-fn main() {
- fn assert_sync<T: Sync>(_: T) {}
- fn assert_send<T: Send>(_: T) {}
-
- assert_sync(|| {
- //~^ ERROR: generator cannot be shared between threads safely
- let a = NotSync;
- yield;
- drop(a);
- });
-
- assert_send(|| {
- //~^ ERROR: generator cannot be sent between threads safely
- let a = NotSend;
- yield;
- drop(a);
- });
-}