summaryrefslogtreecommitdiff
path: root/lua/tests/indent/c/expr.c
diff options
context:
space:
mode:
Diffstat (limited to 'lua/tests/indent/c/expr.c')
-rw-r--r--lua/tests/indent/c/expr.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/lua/tests/indent/c/expr.c b/lua/tests/indent/c/expr.c
deleted file mode 100644
index cafb1112..00000000
--- a/lua/tests/indent/c/expr.c
+++ /dev/null
@@ -1,12 +0,0 @@
-void foo(int x, int y)
-{
- if ((x*x - y*y > 0) ||
- (x == 1 || y == 1) &&
- (x != 2 && y != 2)
- ) {
- return;
- }
-
- int z = (x + y) *
- (x - y);
-}