7 lines
147 B
Rust
7 lines
147 B
Rust
|
// rustfmt-where_style: Rfc
|
||
|
// Where style
|
||
|
|
||
|
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T where Ipsum: Eq, Dolor: Eq, Sit: Eq, Amet: Eq {
|
||
|
// body
|
||
|
}
|