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