nvim-treesitter/lua/tests/indent/c/struct.c

12 lines
111 B
C
Raw Normal View History

2021-04-17 22:47:02 +02:00
struct foo {
int a;
struct bar {
int x;
} b;
};
union baz {
struct foo;
int x;
};