summaryrefslogtreecommitdiff
path: root/lua/tests/indent/c/struct.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/c/struct.c')
-rw-r--r--lua/tests/indent/c/struct.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lua/tests/indent/c/struct.c b/lua/tests/indent/c/struct.c
deleted file mode 100644
index 8cc2b6b2..00000000
--- a/lua/tests/indent/c/struct.c
+++ /dev/null
@@ -1,11 +0,0 @@
-struct foo {
- int a;
- struct bar {
- int x;
- } b;
-};
-
-union baz {
- struct foo;
- int x;
-};