aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/10.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/10.c')
-rw-r--r--c_compiler/test/in/10.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/c_compiler/test/in/10.c b/c_compiler/test/in/10.c
deleted file mode 100644
index 37a6ecc..0000000
--- a/c_compiler/test/in/10.c
+++ /dev/null
@@ -1,18 +0,0 @@
-int f()
-{}
-
-int g = 2;
-
-int x(int y) {
- int z = 3;
-
- if(y < z || g < z) {
- int r;
- ++y;
- } else if(y == z) {
- int f;
- --y;
- } else return y;
-
- return g;
-}