2023-10-19 16:46:28 -05:00
|
|
|
#![feature(coroutines, coroutine_trait)]
|
2017-07-15 05:52:49 -05:00
|
|
|
|
|
|
|
use std::cell::Cell;
|
2023-10-19 11:06:43 -05:00
|
|
|
use std::ops::{Coroutine, CoroutineState};
|
2018-10-04 13:49:38 -05:00
|
|
|
use std::pin::Pin;
|
2017-07-15 05:52:49 -05:00
|
|
|
|
2018-10-04 13:49:38 -05:00
|
|
|
fn borrow_local_inline() {
|
2017-07-15 05:52:49 -05: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.)
|
|
|
|
let mut b = move || {
|
2018-01-11 12:49:26 -06:00
|
|
|
let a = &mut 3;
|
2023-10-19 16:46:28 -05:00
|
|
|
//~^ ERROR borrow may still be in use when coroutine yields
|
2023-10-19 11:06:43 -05:00
|
|
|
yield ();
|
2017-07-15 05:52:49 -05:00
|
|
|
println!("{}", a);
|
|
|
|
};
|
2020-01-25 13:03:10 -06:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 05:52:49 -05:00
|
|
|
}
|
|
|
|
|
2018-10-04 13:49:38 -05:00
|
|
|
fn borrow_local_inline_done() {
|
2017-07-15 05:52:49 -05:00
|
|
|
// No error here -- `a` is not in scope at the point of `yield`.
|
|
|
|
let mut b = move || {
|
|
|
|
{
|
2018-01-11 12:49:26 -06:00
|
|
|
let a = &mut 3;
|
2017-07-15 05:52:49 -05:00
|
|
|
}
|
2023-10-19 11:06:43 -05:00
|
|
|
yield ();
|
2017-07-15 05:52:49 -05:00
|
|
|
};
|
2020-01-25 13:03:10 -06:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 05:52:49 -05:00
|
|
|
}
|
|
|
|
|
2018-10-04 13:49:38 -05:00
|
|
|
fn borrow_local() {
|
2017-07-15 05:52:49 -05: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.)
|
|
|
|
let mut b = move || {
|
|
|
|
let a = 3;
|
|
|
|
{
|
2018-01-11 12:49:26 -06:00
|
|
|
let b = &a;
|
2023-10-19 16:46:28 -05:00
|
|
|
//~^ ERROR borrow may still be in use when coroutine yields
|
2023-10-19 11:06:43 -05:00
|
|
|
yield ();
|
2017-07-15 05:52:49 -05:00
|
|
|
println!("{}", b);
|
|
|
|
}
|
|
|
|
};
|
2020-01-25 13:03:10 -06:00
|
|
|
Pin::new(&mut b).resume(());
|
2017-07-15 05:52:49 -05:00
|
|
|
}
|
|
|
|
|
2023-10-19 11:06:43 -05:00
|
|
|
fn main() {}
|