blob: fa8d75aec7a3b05fa0c10cdf667f43ec48b512e3 [file] [log] [blame]
// run-pass
#![allow(unused_mut)]
#![allow(unused_variables)]
fn decode() -> String {
'outer: loop {
let mut ch_start: usize;
break 'outer;
}
"".to_string()
}
pub fn main() {
println!("{}", decode());
}