Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ edition:2021
//@ check-pass
#![feature(coroutines, stmt_expr_attributes)]
fn main() {
let x = &mut ();
|| {
let _c = #[coroutine]
|| yield *&mut *x;
|| _ = &mut *x;
};
}