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

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