mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-12 00:24:03 +00:00
11 lines
218 B
Rust
11 lines
218 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
|
|
}
|
|
}
|