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

12 lines
111 B
C
Raw Normal View History

2024-08-21 14:17:26 +08:00
struct foo {
int a;
struct bar {
int x;
} b;
};
union baz {
struct foo;
int x;
};