mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
16 lines
234 B
Rust
16 lines
234 B
Rust
// rustfmt-where_density: Tall
|
|
// Where density
|
|
|
|
trait Lorem {
|
|
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
|
where
|
|
Dolor: Eq;
|
|
|
|
fn ipsum<Dolor>(dolor: Dolor) -> Sit
|
|
where
|
|
Dolor: Eq,
|
|
{
|
|
// body
|
|
}
|
|
}
|