mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 17:13:48 +00:00
14 lines
225 B
Rust
14 lines
225 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
|
||
|
}
|
||
|
}
|