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.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/c_compiler/test/in/mult.c b/c_compiler/test/in/mult.c
new file mode 100644
index 0000000..9f19107
--- /dev/null
+++ b/c_compiler/test/in/mult.c
@@ -0,0 +1,11 @@
+int main()
+{
+ int x = 4*2;
+ int y = 7;
+ int z = 14 % 8;
+
+ z = x * y * z / z * x;
+ z = z / 1;
+
+ return z;
+}