summaryrefslogtreecommitdiff
path: root/test/indent/c-family/close-function-with-struct-param/in
blob: 97ff47361bde3540bfd624a3c9e0a45184a3bf91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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 {
    %( )
};