rust/tests/target/configs-where_style-rfc.rs
2017-05-01 15:58:04 +02:00

12 lines
164 B
Rust

// rustfmt-where_style: Rfc
// Where style
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where
Ipsum: Eq,
Dolor: Eq,
Sit: Eq,
Amet: Eq,
{
// body
}