rust/tests/ui/coroutine/yield-while-ref-reborrowed.rs

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

41 lines
957 B
Rust
Raw Normal View History

2023-10-19 21:46:28 +00:00
#![feature(coroutines, coroutine_trait)]
2023-10-19 16:06:43 +00:00
use std::ops::{CoroutineState, Coroutine};
use std::cell::Cell;
2018-10-04 18:49:38 +00:00
use std::pin::Pin;
2018-10-04 18:49:38 +00:00
fn reborrow_shared_ref(x: &i32) {
// This is OK -- we have a borrow live over the yield, but it's of
2023-10-19 21:46:28 +00:00
// data that outlives the coroutine.
let mut b = move || {
let a = &*x;
yield();
println!("{}", a);
};
Pin::new(&mut b).resume(());
}
2018-10-04 18:49:38 +00:00
fn reborrow_mutable_ref(x: &mut i32) {
// This is OK -- we have a borrow live over the yield, but it's of
2023-10-19 21:46:28 +00:00
// data that outlives the coroutine.
let mut b = move || {
let a = &mut *x;
yield();
println!("{}", a);
};
Pin::new(&mut b).resume(());
}
2018-10-04 18:49:38 +00:00
fn reborrow_mutable_ref_2(x: &mut i32) {
// ...but not OK to go on using `x`.
let mut b = || {
let a = &mut *x;
yield();
println!("{}", a);
};
println!("{}", x); //~ ERROR
Pin::new(&mut b).resume(());
}
fn main() { }