blob: 16c8cd476291cf23d1fde26632afd628edfe6103 [file] [log] [blame]
#![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);
});
}