nvim-treesitter/tests/indent/c/struct.c
2021-04-23 21:21:38 +02:00

11 lines
111 B
C

struct foo {
int a;
struct bar {
int x;
} b;
};
union baz {
struct foo;
int x;
};