summaryrefslogtreecommitdiff
path: root/tests/sources/0203_assign_expr2.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sources/0203_assign_expr2.c')
-rw-r--r--tests/sources/0203_assign_expr2.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sources/0203_assign_expr2.c b/tests/sources/0203_assign_expr2.c
new file mode 100644
index 0000000..7583362
--- /dev/null
+++ b/tests/sources/0203_assign_expr2.c
@@ -0,0 +1,5 @@
+int x,y;
+x = 12;
+y = 16;
+x = x + y + 2;
+print(x);