summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/one_line_if_v2.rs
blob: 40c834959f90e796e24e411d4d493bbadcf2edbb (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
// rustfmt-version: Two

fn plain_if(x: bool) -> u8 {
    if x {
        0
    } else {
        1
    }
}

fn paren_if(x: bool) -> u8 {
    (if x { 0 } else { 1 })
}

fn let_if(x: bool) -> u8 {
    let x = if x {
        foo()
    } else {
        bar()
    };
    x
}

fn return_if(x: bool) -> u8 {
    return if x {
        0
    } else {
        1
    };
}

fn multi_if() {
    use std::io;
    if x { foo() } else { bar() }
    if x { foo() } else { bar() }
}

fn middle_if() {
    use std::io;
    if x { foo() } else { bar() }
    let x = 1;
}