rust/tests/target/configs/indent_style/block_where_pred.rs

13 lines
178 B
Rust
Raw Normal View History

2017-11-13 01:09:59 -06:00
// rustfmt-indent_style: Block
// Where predicate indent
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
2017-06-11 23:01:41 -05:00
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq,
{
// body
}