rust/tests/target/configs/indent_style/block_where_pred.rs
2018-03-02 15:07:13 +13:00

13 lines
178 B
Rust

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