rust/src/test/ui/generator/yield-while-local-borrowed.rs

50 lines
1.2 KiB
Rust
Raw Normal View History

#![feature(generators, generator_trait)]
use std::ops::{GeneratorState, Generator};
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 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 = move || {
2018-01-11 18:49:26 +00:00
let a = &mut 3;
2019-05-02 22:34:15 +00:00
//~^ ERROR borrow may still be in use when generator yields
yield();
println!("{}", a);
};
2018-10-04 18:49:38 +00:00
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 = move || {
{
2018-01-11 18:49:26 +00:00
let a = &mut 3;
}
yield();
};
2018-10-04 18:49:38 +00:00
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 = move || {
let a = 3;
{
2018-01-11 18:49:26 +00:00
let b = &a;
2019-05-02 22:34:15 +00:00
//~^ ERROR borrow may still be in use when generator yields
yield();
println!("{}", b);
}
};
2018-10-04 18:49:38 +00:00
Pin::new(&mut b).resume();
}
fn main() { }