]> git.lizzy.rs Git - rust.git/blob - tests/target/configs-fn_brace_style-same_line_where.rs
Move Indent and Shape to shape.rs from lib.rs
[rust.git] / tests / target / configs-fn_brace_style-same_line_where.rs
1 // rustfmt-fn_brace_style: SameLineWhere
2 // Function brace style
3
4 fn lorem() {
5     // body
6 }
7
8 fn lorem(ipsum: usize) {
9     // body
10 }
11
12 fn lorem<T>(ipsum: T)
13 where
14     T: Add + Sub + Mul + Div,
15 {
16     // body
17 }