rust/tests/ui/coroutine/ref-escapes-but-not-over-yield.rs

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

18 lines
462 B
Rust
Raw Permalink Normal View History

#![feature(coroutines, stmt_expr_attributes)]
fn foo(x: &i32) {
2023-10-19 16:46:28 -05:00
// 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 = #[coroutine]
move || {
yield ();
let b = 5;
2017-11-20 06:13:27 -06:00
a = &b;
2023-10-19 16:46:28 -05:00
//~^ ERROR borrowed data escapes outside of coroutine
2017-12-13 19:27:23 -06:00
};
}
fn main() {}