rust/tests/target/configs-where_density-compressed.rs
2017-06-13 14:42:54 +12:00

15 lines
240 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
}
}