summaryrefslogtreecommitdiffstats
path: root/src/test/ui/expr/if/attrs/builtin-if-attr.rs
blob: 7e290661501c9c36eb05c0e395a9e27e5c5b0bc3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// check-pass

fn main() {
    #[allow(unused_variables)]
    if true {
        let a = 1;
    } else if false {
        let b = 1;
    } else {
        let c = 1;
    }
}