rust/tests/target/configs-where_density-compressed_if_empty.rs
Seiichi Uchida d2acd99703 Update tests
2017-08-01 22:27:12 +09:00

14 lines
239 B
Rust

// 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
}
}