mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-13 00:56:14 +00:00
12 lines
194 B
Rust
12 lines
194 B
Rust
// rustfmt-where_pred_indent: Block
|
|
// Where predicate indent
|
|
|
|
fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
|
|
where Ipsum: Eq,
|
|
Dolor: Eq,
|
|
Sit: Eq,
|
|
Amet: Eq
|
|
{
|
|
// body
|
|
}
|