summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/multi.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/multi.c b/test/multi.c
new file mode 100644
index 0000000..ba3e2b4
--- /dev/null
+++ b/test/multi.c
@@ -0,0 +1,5 @@
+int main (int argc, char** argv) {
+ int x, y = 4;
+ x = (5, argc);
+ return x + y;
+}