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

11 lines
218 B
Rust
Raw Normal View History

// rustfmt-where_density: CompressedIfEmpty
// Where density
trait Lorem {
fn ipsum<Dolor>(dolor: Dolor) -> Sit where Dolor: Eq;
fn ipsum<Dolor>(dolor: Dolor) -> Sit where Dolor: Eq {
// body
}
}