rust/tests/target/configs-where_pred_indent-block.rs

13 lines
183 B
Rust
Raw Normal View History

// rustfmt-where_pred_indent: Block
// Where predicate indent
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
2017-06-12 06:01:41 +02:00
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq,
{
// body
}