summary refs log tree commit diff
path: root/tests/coverage/loop_break_value.coverage
blob: 5e80168b958b127de0c45b513c4b3ea070c7f3f2 (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|       |        =
   LL|      1|            loop
   LL|      1|        {
   LL|      1|            break
   LL|      1|            10
   LL|      1|            ;
   LL|      1|        }
   LL|       |    ;
   LL|      1|}