2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
2017-07-15 06:52:49 -04:00
|
|
|
|
|
|
|
use std::cell::Cell;
|
2024-04-11 13:15:34 +00:00
|
|
|
use std::ops::{Coroutine, CoroutineState};
|
2018-10-04 20:49:38 +02:00
|
|
|
use std::pin::Pin;
|
2017-07-15 06:52:49 -04:00
|
|
|
|
2018-10-04 20:49:38 +02:00
|
|
|
fn reborrow_shared_ref(x: &i32) {
|
2017-07-15 06:52:49 -04:00
|
|
|
// 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.
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine]
|
|
|
|
move || {
|
2017-07-15 06:52:49 -04:00
|
|
|
let a = &*x;
|
2024-04-11 13:15:34 +00:00
|
|
|
yield ();
|
2017-07-15 06:52:49 -04:00
|
|
|
println!("{}", a);
|
|
|
|
};
|
2020-01-25 20:03:10 +01:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 06:52:49 -04:00
|
|
|
}
|
|
|
|
|
2018-10-04 20:49:38 +02:00
|
|
|
fn reborrow_mutable_ref(x: &mut i32) {
|
2017-07-15 06:52:49 -04:00
|
|
|
// 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.
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine]
|
|
|
|
move || {
|
2017-07-15 06:52:49 -04:00
|
|
|
let a = &mut *x;
|
2024-04-11 13:15:34 +00:00
|
|
|
yield ();
|
2017-07-15 06:52:49 -04:00
|
|
|
println!("{}", a);
|
|
|
|
};
|
2020-01-25 20:03:10 +01:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 06:52:49 -04:00
|
|
|
}
|
|
|
|
|
2018-10-04 20:49:38 +02:00
|
|
|
fn reborrow_mutable_ref_2(x: &mut i32) {
|
2017-07-15 06:52:49 -04:00
|
|
|
// ...but not OK to go on using `x`.
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine]
|
|
|
|
|| {
|
2017-07-15 06:52:49 -04:00
|
|
|
let a = &mut *x;
|
2024-04-11 13:15:34 +00:00
|
|
|
yield ();
|
2017-07-15 06:52:49 -04:00
|
|
|
println!("{}", a);
|
|
|
|
};
|
|
|
|
println!("{}", x); //~ ERROR
|
2020-01-25 20:03:10 +01:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 06:52:49 -04:00
|
|
|
}
|
|
|
|
|
2024-04-11 13:15:34 +00:00
|
|
|
fn main() {}
|