2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
2017-07-14 23:11:21 +00:00
|
|
|
|
2017-07-15 10:52:49 +00:00
|
|
|
fn foo(x: &i32) {
|
2023-10-19 21:46:28 +00:00
|
|
|
// In this case, a reference to `b` escapes the coroutine, but not
|
2017-07-15 10:52:49 +00:00
|
|
|
// 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;
|
2024-04-11 13:15:34 +00:00
|
|
|
let mut b = #[coroutine]
|
|
|
|
move || {
|
|
|
|
yield ();
|
2017-07-15 10:52:49 +00:00
|
|
|
let b = 5;
|
2017-11-20 12:13:27 +00:00
|
|
|
a = &b;
|
2023-10-19 21:46:28 +00:00
|
|
|
//~^ ERROR borrowed data escapes outside of coroutine
|
2017-12-14 01:27:23 +00:00
|
|
|
};
|
2017-07-14 23:11:21 +00:00
|
|
|
}
|
|
|
|
|
2024-04-11 13:15:34 +00:00
|
|
|
fn main() {}
|