mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-26 17:26:51 +00:00
15 lines
195 B
Rust
15 lines
195 B
Rust
#![allow(unused_assignments, unused_variables)]
|
|
|
|
#[rustfmt::skip]
|
|
fn main() {
|
|
let result
|
|
=
|
|
loop
|
|
{
|
|
break
|
|
10
|
|
;
|
|
}
|
|
;
|
|
}
|