2023-04-28 16:50:28 +00:00
|
|
|
//@ edition:2021
|
2023-10-24 19:16:15 +02:00
|
|
|
//@ check-pass
|
2024-04-11 13:15:34 +00:00
|
|
|
#![feature(coroutines, stmt_expr_attributes)]
|
2023-04-28 16:50:28 +00:00
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
let x = &mut ();
|
|
|
|
|
|| {
|
2024-04-11 13:15:34 +00:00
|
|
|
let _c = #[coroutine]
|
|
|
|
|
|| yield *&mut *x;
|
2023-04-28 16:50:28 +00:00
|
|
|
|| _ = &mut *x;
|
|
|
|
|
};
|
|
|
|
|
}
|