rust/tests/ui/coroutine/drop-env.rs

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

68 lines
1.3 KiB
Rust
Raw Normal View History

//@ run-pass
//@ revisions: default nomiropt
//@[nomiropt]compile-flags: -Z mir-opt-level=0
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
#![allow(dropping_copy_types)]
2017-07-07 23:12:44 +00:00
2023-10-19 16:06:43 +00:00
use std::ops::Coroutine;
2018-10-04 18:49:38 +00:00
use std::pin::Pin;
2019-01-26 16:14:49 +00:00
use std::sync::atomic::{AtomicUsize, Ordering};
2017-07-07 23:12:44 +00:00
2019-01-26 16:14:49 +00:00
static A: AtomicUsize = AtomicUsize::new(0);
2017-07-07 23:12:44 +00:00
struct B;
impl Drop for B {
fn drop(&mut self) {
A.fetch_add(1, Ordering::SeqCst);
}
}
fn main() {
t1();
t2();
t3();
}
fn t1() {
let b = B;
let mut foo = #[coroutine] || {
2017-07-07 23:12:44 +00:00
yield;
drop(b);
};
let n = A.load(Ordering::SeqCst);
drop(Pin::new(&mut foo).resume(()));
2017-07-07 23:12:44 +00:00
assert_eq!(A.load(Ordering::SeqCst), n);
drop(foo);
assert_eq!(A.load(Ordering::SeqCst), n + 1);
}
fn t2() {
let b = B;
let mut foo = #[coroutine] || {
2017-07-07 23:12:44 +00:00
yield b;
};
let n = A.load(Ordering::SeqCst);
drop(Pin::new(&mut foo).resume(()));
2017-07-07 23:12:44 +00:00
assert_eq!(A.load(Ordering::SeqCst), n + 1);
drop(foo);
assert_eq!(A.load(Ordering::SeqCst), n + 1);
}
fn t3() {
let b = B;
let foo = #[coroutine] || {
2017-07-07 23:12:44 +00:00
yield;
drop(b);
};
let n = A.load(Ordering::SeqCst);
assert_eq!(A.load(Ordering::SeqCst), n);
drop(foo);
assert_eq!(A.load(Ordering::SeqCst), n + 1);
2017-07-07 23:12:44 +00:00
}