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

19 lines
208 B
Rust
Raw Normal View History

// rustfmt-fn_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
}