summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/one_line_if_v1.rs
blob: b3c6c4cbeb203361197de4a43397a5b265f9671c (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
// rustfmt-version: One

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;
}