aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/compound_lit.c
blob: 29e336f584baca500b9d19f8fd391732666f5364 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
struct foo {
    int x, y;
};

struct foo bar(int x, int y) {
    return (struct foo) {
        .x = x,
        .y = y
    };
}