aboutsummaryrefslogtreecommitdiffstats
path: root/lua/tests/indent/c/loop.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/c/loop.c')
-rw-r--r--lua/tests/indent/c/loop.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/lua/tests/indent/c/loop.c b/lua/tests/indent/c/loop.c
deleted file mode 100644
index facaebb6b..000000000
--- a/lua/tests/indent/c/loop.c
+++ /dev/null
@@ -1,16 +0,0 @@
-void foo(int x)
-{
- while (x > 0) {
- x--;
- continue;
- }
-
- for (int i = 0; i < 5; ++i) {
- x++;
- break;
- }
-
- do {
- x++;
- } while (x < 0);
-}