]> git.lizzy.rs Git - rust.git/blob - src/test/run-make-fulldeps/coverage-reports/expected_show_coverage.continue.txt
Auto merge of #84904 - ssomers:btree_drop_kv_in_place, r=Mark-Simulacrum
[rust.git] / src / test / run-make-fulldeps / coverage-reports / expected_show_coverage.continue.txt
1     1|       |#![allow(unused_assignments, unused_variables)]
2     2|       |
3     3|      1|fn main() {
4     4|      1|    let is_true = std::env::args().len() == 1;
5     5|      1|
6     6|      1|    let mut x = 0;
7     7|     11|    for _ in 0..10 {
8                       ^10
9     8|     10|        match is_true {
10     9|       |            true => {
11    10|     10|                continue;
12    11|       |            }
13    12|      0|            _ => {
14    13|      0|                x = 1;
15    14|      0|            }
16    15|      0|        }
17    16|      0|        x = 3;
18    17|       |    }
19    18|     11|    for _ in 0..10 {
20                       ^10
21    19|     10|        match is_true {
22    20|      0|            false => {
23    21|      0|                x = 1;
24    22|      0|            }
25    23|       |            _ => {
26    24|     10|                continue;
27    25|       |            }
28    26|       |        }
29    27|      0|        x = 3;
30    28|       |    }
31    29|     11|    for _ in 0..10 {
32                       ^10
33    30|     10|        match is_true {
34    31|     10|            true => {
35    32|     10|                x = 1;
36    33|     10|            }
37    34|       |            _ => {
38    35|      0|                continue;
39    36|       |            }
40    37|       |        }
41    38|     10|        x = 3;
42    39|       |    }
43    40|     11|    for _ in 0..10 {
44                       ^10
45    41|     10|        if is_true {
46    42|     10|            continue;
47    43|      0|        }
48    44|      0|        x = 3;
49    45|       |    }
50    46|     11|    for _ in 0..10 {
51                       ^10
52    47|     10|        match is_true {
53    48|      0|            false => {
54    49|      0|                x = 1;
55    50|      0|            }
56    51|     10|            _ => {
57    52|     10|                let _ = x;
58    53|     10|            }
59    54|       |        }
60    55|     10|        x = 3;
61    56|       |    }
62    57|      1|    for _ in 0..10 {
63    58|      1|        match is_true {
64    59|      0|            false => {
65    60|      0|                x = 1;
66    61|      0|            }
67    62|       |            _ => {
68    63|      1|                break;
69    64|       |            }
70    65|       |        }
71    66|      0|        x = 3;
72    67|       |    }
73    68|       |    let _ = x;
74    69|      1|}
75