2017-11-13 16:09:59 +09:00
|
|
|
// rustfmt-indent_style: Block
|
2017-04-30 23:49:39 +02:00
|
|
|
// Where predicate indent
|
|
|
|
|
|
|
|
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
|
2017-06-12 16:01:41 +12:00
|
|
|
where
|
|
|
|
Ipsum: Eq,
|
|
|
|
Dolor: Eq,
|
|
|
|
Sit: Eq,
|
|
|
|
Amet: Eq,
|
2017-04-30 23:49:39 +02:00
|
|
|
{
|
|
|
|
// body
|
|
|
|
}
|