mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
236 B
Rust
15 lines
236 B
Rust
// 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());
|
|
}
|