aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/execute/torture/cfg5.rs
blob: 581a29bb89d092227874737d7bc255f39ee47950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// { dg-additional-options "-w -frust-cfg=A" }

fn main() -> i32 {
    let mut a = 0;

    #[cfg(A)]
    a = 3;

    #[cfg(B)]
    a = 40;

    a - 3
}