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