rust/tests/target/configs-where_pred_indent-block.rs
2017-06-13 14:42:54 +12:00

12 lines
183 B
Rust

// rustfmt-where_pred_indent: Block
// Where predicate indent
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq,
{
// body
}