summaryrefslogtreecommitdiff
path: root/tests/vm/printi_if_not.elna
diff options
context:
space:
mode:
Diffstat (limited to 'tests/vm/printi_if_not.elna')
-rw-r--r--tests/vm/printi_if_not.elna6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/vm/printi_if_not.elna b/tests/vm/printi_if_not.elna
new file mode 100644
index 0000000..aafe182
--- /dev/null
+++ b/tests/vm/printi_if_not.elna
@@ -0,0 +1,6 @@
+proc main() {
+ if (1 # 2)
+ printi(3);
+ else
+ printi(5);
+}