spacevim/bundle/nvim-treesitter-0.9.1/tests/indent/c/array.c

15 lines
121 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
int x[] = {
1, 2, 3,
4, 5,
6
};
int y[][2] = {
{0, 1},
{1, 2},
{
2,
3
},
};