aboutsummaryrefslogtreecommitdiffstats
path: root/c_compiler/test/in/Mult.c
diff options
context:
space:
mode:
Diffstat (limited to 'c_compiler/test/in/Mult.c')
-rw-r--r--c_compiler/test/in/Mult.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/c_compiler/test/in/Mult.c b/c_compiler/test/in/Mult.c
deleted file mode 100644
index 4855b54..0000000
--- a/c_compiler/test/in/Mult.c
+++ /dev/null
@@ -1,9 +0,0 @@
-int main() {
- int x = 4*2;
- int y = 7;
- int z = 14 % 8;
-
- z = x * y * z / z * x;
-
- return z;
-}