summaryrefslogtreecommitdiffstats
path: root/src/test/run-make/coverage-reports/expected_show_coverage.inline-dead.txt
blob: a59fe1146f480c6388ca8d8493ed4bd97d63837e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
    1|       |// Regression test for issue #98833.
    2|       |// compile-flags: -Zinline-mir -Cdebug-assertions=off
    3|       |
    4|      1|fn main() {
    5|      1|    println!("{}", live::<false>());
    6|      1|
    7|      1|    let f = |x: bool| {
    8|       |        debug_assert!(
    9|      0|            x
   10|       |        );
   11|      1|    };
   12|      1|    f(false);
   13|      1|}
   14|       |
   15|       |#[inline]
   16|      1|fn live<const B: bool>() -> u32 {
   17|      1|    if B {
   18|      0|        dead()
   19|       |    } else {
   20|      1|        0
   21|       |    }
   22|      1|}
   23|       |
   24|       |#[inline]
   25|      0|fn dead() -> u32 {
   26|      0|    42
   27|      0|}