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

11 lines
128 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
struct foo {
int x, y;
};
struct foo bar(int x, int y) {
return (struct foo) {
.x = x,
.y = y
};
}