From 63a88c873f3643aad9208488765dc53618edd40e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Boczar?= Date: Thu, 22 Apr 2021 20:53:30 +0200 Subject: move all tests to top-level tests/ directory --- lua/tests/indent/c/loop.c | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 lua/tests/indent/c/loop.c (limited to 'lua/tests/indent/c/loop.c') diff --git a/lua/tests/indent/c/loop.c b/lua/tests/indent/c/loop.c deleted file mode 100644 index facaebb6..00000000 --- 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); -} -- cgit v1.2.3