summaryrefslogtreecommitdiff
path: root/test/indent/c-family/close-function-with-struct-param/out
blob: d7ba56c773e5b975b2e63b4d691192a1486d94e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
void f(int i,
       struct S s)
{

}

void g(int i,
       struct S s) {

}

struct T {
    void h(int i,
           struct S s) const {

    }

    void i(int i,
           struct S s) const final {

    }
};