mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
31 lines
710 B
Rust
31 lines
710 B
Rust
// revisions: no_drop_tracking drop_tracking drop_tracking_mir
|
|
// [drop_tracking] compile-flags: -Zdrop-tracking
|
|
// [drop_tracking_mir] compile-flags: -Zdrop-tracking-mir
|
|
#![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);
|
|
});
|
|
}
|