summaryrefslogtreecommitdiff
path: root/tests/sources/0200_assign_cst.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/sources/0200_assign_cst.c')
-rw-r--r--tests/sources/0200_assign_cst.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/sources/0200_assign_cst.c b/tests/sources/0200_assign_cst.c
new file mode 100644
index 0000000..8340469
--- /dev/null
+++ b/tests/sources/0200_assign_cst.c
@@ -0,0 +1,6 @@
+int x;
+print(x);
+x = 12;
+print(x);
+x = 15;
+print(x);