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

13 lines
167 B
Rust
Raw Normal View History

2017-11-13 08:22:09 +01:00
// rustfmt-indent_style: Block
// Where style
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq,
{
// body
}