rust/tests/ui/generator/partial-drop.rs

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

34 lines
829 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
2023-01-25 21:51:26 -06:00
// [drop_tracking_mir] check-pass
#![feature(negative_impls, generators)]
struct Foo;
impl !Send for Foo {}
struct Bar {
foo: Foo,
x: i32,
}
fn main() {
assert_send(|| {
2023-01-25 21:51:26 -06:00
//[no_drop_tracking,drop_tracking]~^ ERROR generator cannot be sent between threads safely
let guard = Bar { foo: Foo, x: 42 };
drop(guard.foo);
yield;
2022-01-14 19:45:00 -06:00
});
assert_send(|| {
2023-01-25 21:51:26 -06:00
//[no_drop_tracking,drop_tracking]~^ ERROR generator cannot be sent between threads safely
2022-01-14 19:45:00 -06:00
let guard = Bar { foo: Foo, x: 42 };
let Bar { foo, x } = guard;
drop(foo);
yield;
});
}
fn assert_send<T: Send>(_: T) {}