aboutsummaryrefslogtreecommitdiffstats
path: root/test/gourdinl/c/simple_op.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/gourdinl/c/simple_op.c')
-rw-r--r--test/gourdinl/c/simple_op.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/gourdinl/c/simple_op.c b/test/gourdinl/c/simple_op.c
new file mode 100644
index 00000000..7c43b081
--- /dev/null
+++ b/test/gourdinl/c/simple_op.c
@@ -0,0 +1,8 @@
+int main(int argc, char ** argv)
+{
+ int n, m;
+ n = n + 1;
+ n = n * 7;
+ n / (8 - 2);
+ return n;
+}