rust/tests/target/configs-where_density-compressed_if_empty.rs

16 lines
247 B
Rust
Raw Normal View History

// rustfmt-where_density: CompressedIfEmpty
// Where density
trait Lorem {
2017-06-12 06:01:41 +02:00
fn ipsum<Dolor>(dolor: Dolor) -> Sit
where
Dolor: Eq;
fn ipsum<Dolor>(dolor: Dolor) -> Sit
2017-06-12 06:01:41 +02:00
where
Dolor: Eq,
{
// body
}
}