mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
423 B
Rust
17 lines
423 B
Rust
#![feature(coroutines)]
|
|
|
|
fn foo(x: &i32) {
|
|
// In this case, a reference to `b` escapes the coroutine, but not
|
|
// because of a yield. We see that there is no yield in the scope of
|
|
// `b` and give the more generic error message.
|
|
let mut a = &3;
|
|
let mut b = move || {
|
|
yield();
|
|
let b = 5;
|
|
a = &b;
|
|
//~^ ERROR borrowed data escapes outside of coroutine
|
|
};
|
|
}
|
|
|
|
fn main() { }
|