nvim-treesitter/tests/indent/c/array.c
2021-04-23 21:21:38 +02:00

14 lines
121 B
C

int x[] = {
1, 2, 3,
4, 5,
6
};
int y[][2] = {
{0, 1},
{1, 2},
{
2,
3
},
};