aboutsummaryrefslogtreecommitdiffstats
path: root/tests/indent/c/array.c
blob: 5bb67c2c8786ee91be2c948499d961940bbe2025 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
int x[] = {
    1, 2, 3,
    4, 5,
    6
};

int y[][2] = {
    {0, 1},
    {1, 2},
    {
        2,
        3
    },
};