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