2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
|
2017-07-15 10:52:49 +00:00
|
|
|
|
|
|
|
use std::cell::Cell;
|
2023-10-19 16:06:43 +00:00
|
|
|
use std::ops::{Coroutine, CoroutineState};
|
2018-10-04 18:49:38 +00:00
|
|
|
use std::pin::Pin;
|
2017-07-15 10:52:49 +00:00
|
|
|
|
2018-10-04 18:49:38 +00:00
|
|
|
fn borrow_local_inline() {
|
2017-07-15 10:52:49 +00:00
|
|
|
// Not OK to yield with a borrow of a temporary.
|
|
|
|
//
|
|
|
|
// (This error occurs because the region shows up in the type of
|
|
|
|
// `b` and gets extended by region inference.)
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine] move || {
|
2018-01-11 18:49:26 +00:00
|
|
|
let a = &mut 3;
|
2023-10-19 21:46:28 +00:00
|
|
|
//~^ ERROR borrow may still be in use when coroutine yields
|
2023-10-19 16:06:43 +00:00
|
|
|
yield ();
|
2017-07-15 10:52:49 +00:00
|
|
|
println!("{}", a);
|
|
|
|
};
|
2020-01-25 19:03:10 +00:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 10:52:49 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 18:49:38 +00:00
|
|
|
fn borrow_local_inline_done() {
|
2017-07-15 10:52:49 +00:00
|
|
|
// No error here -- `a` is not in scope at the point of `yield`.
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine] move || {
|
2017-07-15 10:52:49 +00:00
|
|
|
{
|
2018-01-11 18:49:26 +00:00
|
|
|
let a = &mut 3;
|
2017-07-15 10:52:49 +00:00
|
|
|
}
|
2023-10-19 16:06:43 +00:00
|
|
|
yield ();
|
2017-07-15 10:52:49 +00:00
|
|
|
};
|
2020-01-25 19:03:10 +00:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 10:52:49 +00:00
|
|
|
}
|
|
|
|
|
2018-10-04 18:49:38 +00:00
|
|
|
fn borrow_local() {
|
2017-07-15 10:52:49 +00:00
|
|
|
// Not OK to yield with a borrow of a temporary.
|
|
|
|
//
|
|
|
|
// (This error occurs because the region shows up in the type of
|
|
|
|
// `b` and gets extended by region inference.)
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine] move || {
|
2017-07-15 10:52:49 +00:00
|
|
|
let a = 3;
|
|
|
|
{
|
2018-01-11 18:49:26 +00:00
|
|
|
let b = &a;
|
2023-10-19 21:46:28 +00:00
|
|
|
//~^ ERROR borrow may still be in use when coroutine yields
|
2023-10-19 16:06:43 +00:00
|
|
|
yield ();
|
2017-07-15 10:52:49 +00:00
|
|
|
println!("{}", b);
|
|
|
|
}
|
|
|
|
};
|
2020-01-25 19:03:10 +00:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 10:52:49 +00:00
|
|
|
}
|
|
|
|
|
2023-10-19 16:06:43 +00:00
|
|
|
fn main() {}
|