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

12 lines
196 B
Rust
Raw Normal View History

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