DEBSOURCES
Skip Quicknav
sources / rustc-web / 1.78.0%2Bdfsg1-2~deb12u3 / tests / ui / coroutine / borrow-in-tail-expr.rs
1234567891011
//@ run-pass #![feature(coroutines)] fn main() { let _a = || { yield; let a = String::new(); a.len() }; }