summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/configs/brace_style/fn_always_next_line.rs
blob: d3bd9ac09aa6d6a0e105e5cb1a3d02fd1a23f8b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// rustfmt-brace_style: AlwaysNextLine
// Function brace style

fn lorem() {
    // body
}

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

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