nvim-treesitter/tests/indent/c/compound_lit.c
2021-08-01 11:01:47 +02:00

10 lines
128 B
C

struct foo {
int x, y;
};
struct foo bar(int x, int y) {
return (struct foo) {
.x = x,
.y = y
};
}