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

11 lines
128 B
C
Raw Normal View History

2021-07-31 13:17:14 -04:00
struct foo {
int x, y;
};
struct foo bar(int x, int y) {
return (struct foo) {
.x = x,
.y = y
};
}