blob: 4d513e612f06d553392441b7904261f859505ba0 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
 | #![allow(unused_assignments, unused_variables, dead_code)]
fn main() {
    // Initialize test constants in a way that cannot be determined at compile time, to ensure
    // rustc and LLVM cannot optimize out statements (or coverage counters) downstream from
    // dependent conditions.
    let is_true = std::env::args().len() == 1;
    let mut countdown = 0;
    if is_true {
        countdown = 10;
    }
    mod in_mod {
        const IN_MOD_CONST: u32 = 1000;
    }
    fn in_func(a: u32) {
        let b = 1;
        let c = a + b;
        println!("c = {}", c)
    }
    struct InStruct {
        in_struct_field: u32,
    }
    const IN_CONST: u32 = 1234;
    trait InTrait {
        fn trait_func(&mut self, incr: u32);
        fn default_trait_func(&mut self) {
            in_func(IN_CONST);
            self.trait_func(IN_CONST);
        }
    }
    impl InTrait for InStruct {
        fn trait_func(&mut self, incr: u32) {
            self.in_struct_field += incr;
            in_func(self.in_struct_field);
        }
    }
    type InType = String;
    if is_true {
        in_func(countdown);
    }
    let mut val = InStruct {
        in_struct_field: 101, //
    };
    val.default_trait_func();
}
 |