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

13 lines
184 B
Rust
Raw Normal View History

// rustfmt-where_pred_indent: Visual
// 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
}