summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/configs/indent_style/block_where_pred.rs
blob: ad7e0b8f3633f376283dca22240cb3040f9518de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// rustfmt-indent_style: Block
// Where predicate indent

fn lorem<Ipsum, Dolor, Sit, Amet>() -> T
where
    Ipsum: Eq,
    Dolor: Eq,
    Sit: Eq,
    Amet: Eq,
{
    // body
}