summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/brace_style/fn_same_line_where.rs
blob: 2afe59943a30cc4777c97d838bb4b932c5fa971f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// rustfmt-brace_style: SameLineWhere
// Function brace style

fn lorem() {
    // body
}

fn lorem(ipsum: usize) {
    // body
}

fn lorem<T>(ipsum: T)
where
    T: Add + Sub + Mul + Div,
{
    // body
}