diff options
Diffstat (limited to '')
-rw-r--r-- | tests/ui/generator/not-send-sync.rs | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/tests/ui/generator/not-send-sync.rs b/tests/ui/generator/not-send-sync.rs deleted file mode 100644 index 16c8cd476..000000000 --- a/tests/ui/generator/not-send-sync.rs +++ /dev/null @@ -1,27 +0,0 @@ -#![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); - }); -} |