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

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