mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
14 lines
139 B
Rust
14 lines
139 B
Rust
//@ run-pass
|
|
fn test() {
|
|
let v;
|
|
loop {
|
|
v = 3;
|
|
break;
|
|
}
|
|
println!("{}", v);
|
|
}
|
|
|
|
pub fn main() {
|
|
test();
|
|
}
|