nvim-treesitter/tests/indent/c/array.c

15 lines
121 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
int x[] = {
1, 2, 3,
4, 5,
6
};
int y[][2] = {
{0, 1},
{1, 2},
{
2,
3
},
};