mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-05 11:33:04 +00:00
13 lines
164 B
Rust
13 lines
164 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
|
|
}
|