DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / borrowck / borrowck-while-break.rs
123456789101112
fn test(cond: bool) { let v; while cond { v = 3; break; } println!("{}", v); //~ ERROR E0381 } fn main() { test(true); }