blob: 7d45339875946893bca58c45444b9c56ee237791 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
LL| |#![allow(unused_assignments, unused_variables)]
LL| |
LL| |#[rustfmt::skip]
LL| 1|fn main() {
LL| 1| let result
LL| 1| =
LL| 1| loop
LL| 1| {
LL| 1| break
LL| 1| 10
LL| 1| ;
LL| 1| }
LL| 1| ;
LL| 1|}
|