rust/tests/ui/coroutine/yield-while-local-borrowed.rs

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

50 lines
1.3 KiB
Rust
Raw Normal View History

#![feature(coroutines, coroutine_trait, stmt_expr_attributes)]
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;
2018-10-04 18:49:38 +00:00
fn borrow_local_inline() {
// 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 = #[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 ();
println!("{}", a);
};
Pin::new(&mut b).resume(());
}
2018-10-04 18:49:38 +00:00
fn borrow_local_inline_done() {
// No error here -- `a` is not in scope at the point of `yield`.
let mut b = #[coroutine] move || {
{
2018-01-11 18:49:26 +00:00
let a = &mut 3;
}
2023-10-19 16:06:43 +00:00
yield ();
};
Pin::new(&mut b).resume(());
}
2018-10-04 18:49:38 +00:00
fn borrow_local() {
// 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 = #[coroutine] move || {
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 ();
println!("{}", b);
}
};
Pin::new(&mut b).resume(());
}
2023-10-19 16:06:43 +00:00
fn main() {}