2022-10-01 05:19:31 -05:00
|
|
|
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
|
|
|
|
// [drop_tracking] compile-flags: -Zdrop-tracking
|
|
|
|
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
|
2020-09-10 22:41:02 -05:00
|
|
|
// compile-flags: -Zverbose
|
|
|
|
|
|
|
|
// Same as test/ui/generator/not-send-sync.rs
|
|
|
|
#![feature(generators)]
|
2023-01-25 21:51:26 -06:00
|
|
|
#![feature(negative_impls)]
|
2020-09-10 22:41:02 -05:00
|
|
|
|
2023-01-25 21:51:26 -06:00
|
|
|
struct NotSend;
|
|
|
|
struct NotSync;
|
|
|
|
|
|
|
|
impl !Send for NotSend {}
|
|
|
|
impl !Sync for NotSync {}
|
2020-09-10 22:41:02 -05: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-25 21:51:26 -06:00
|
|
|
let a = NotSync;
|
2020-09-10 22:41:02 -05:00
|
|
|
yield;
|
2023-01-25 21:51:26 -06:00
|
|
|
drop(a);
|
2020-09-10 22:41:02 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
assert_send(|| {
|
2023-01-25 21:51:26 -06:00
|
|
|
//~^ ERROR: generator cannot be sent between threads safely
|
|
|
|
let a = NotSend;
|
2020-09-10 22:41:02 -05:00
|
|
|
yield;
|
2023-01-25 21:51:26 -06:00
|
|
|
drop(a);
|
2020-09-10 22:41:02 -05:00
|
|
|
});
|
|
|
|
}
|