aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/c/array.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/c/array.c')
-rw-r--r--lua/tests/indent/c/array.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/lua/tests/indent/c/array.c b/lua/tests/indent/c/array.c
deleted file mode 100644
index 5bb67c2c8..000000000
--- a/lua/tests/indent/c/array.c
+++ /dev/null
@@ -1,14 +0,0 @@
-int x[] = {
- 1, 2, 3,
- 4, 5,
- 6
-};
-
-int y[][2] = {
- {0, 1},
- {1, 2},
- {
- 2,
- 3
- },
-};