DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb11u3 / tests / ui / coroutine / issue-48048.rs
12345678910111213
#![feature(coroutines)] fn main() { let x = (|_| {},); || { let x = x; x.0({ //~ ERROR borrow may still be in use when coroutine yields yield; }); }; }