summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/one_line_if_v2.rs
blob: 81ca4c8b8b47327069f01a14946f3edd5b5a81f7 (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
// 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;
}