2017-04-30 23:49:39 +02:00
|
|
|
// rustfmt-where_density: Vertical
|
|
|
|
// Where density
|
|
|
|
|
|
|
|
trait Lorem {
|
|
|
|
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
2017-06-12 16:01:41 +12:00
|
|
|
where
|
|
|
|
Dolor: Eq;
|
2017-04-30 23:49:39 +02:00
|
|
|
|
|
|
|
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
2017-06-12 16:01:41 +12:00
|
|
|
where
|
|
|
|
Dolor: Eq,
|
2017-04-30 23:49:39 +02:00
|
|
|
{
|
|
|
|
// body
|
|
|
|
}
|
|
|
|
}
|