aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/11.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/11.c')
-rw-r--r--c_compiler/test/in/11.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/c_compiler/test/in/11.c b/c_compiler/test/in/11.c
deleted file mode 100644
index 2d8cac6..0000000
--- a/c_compiler/test/in/11.c
+++ /dev/null
@@ -1,10 +0,0 @@
-int f() {
- int x = 0;
-
- while(x < 5) {
- int y = 0;
- x++;
- }
-
- return x;
-}