rust/tests/target/configs-fn_brace_style-same_line_where.rs

18 lines
205 B
Rust
Raw Normal View History

// rustfmt-brace_style: SameLineWhere
// Function brace style
fn lorem() {
// body
}
fn lorem(ipsum: usize) {
// body
}
fn lorem<T>(ipsum: T)
2017-06-12 06:01:41 +02:00
where
T: Add + Sub + Mul + Div,
{
// body
}