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

12 lines
219 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
}
}