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

12 lines
196 B
Rust
Raw Normal View History

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