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

20 lines
209 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)
2017-06-12 06:01:41 +02:00
where
T: Add + Sub + Mul + Div,
{
// body
}