rust/tests/ui/generator/not-send-sync.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
710 B
Rust
Raw Normal View History

// revisions: no_drop_tracking drop_tracking drop_tracking_mir
// [drop_tracking] compile-flags: -Zdrop-tracking
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
2017-07-20 08:07:58 +02:00
#![feature(generators)]
2023-01-26 03:51:26 +00:00
#![feature(negative_impls)]
2017-07-07 16:12:44 -07:00
2023-01-26 03:51:26 +00:00
struct NotSend;
struct NotSync;
impl !Send for NotSend {}
impl !Sync for NotSync {}
2017-07-07 16:12:44 -07:00
fn main() {
fn assert_sync<T: Sync>(_: T) {}
fn assert_send<T: Send>(_: T) {}
assert_sync(|| {
//~^ ERROR: generator cannot be shared between threads safely
2023-01-26 03:51:26 +00:00
let a = NotSync;
2017-07-07 16:12:44 -07:00
yield;
2023-01-26 03:51:26 +00:00
drop(a);
2017-07-07 16:12:44 -07:00
});
assert_send(|| {
2023-01-26 03:51:26 +00:00
//~^ ERROR: generator cannot be sent between threads safely
let a = NotSend;
2017-07-07 16:12:44 -07:00
yield;
2023-01-26 03:51:26 +00:00
drop(a);
2017-07-07 16:12:44 -07:00
});
}