rust/tests/ui/generator/not-send-sync.rs
Camille GILLOT 211d2ed07b Bless tests.
2023-09-23 13:47:30 +00:00

28 lines
539 B
Rust

#![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);
});
}