about summary refs log tree commit diff
path: root/src/tools/rustfmt/tests/target/one_line_if_v2.rs
blob: a9610ec974915bc3aab1b811a803bf134392762a (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-style_edition: 2024

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