rust/tests/source/configs-where_density-compressed.rs
2017-05-01 15:58:04 +02:00

11 lines
211 B
Rust

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