aboutsummaryrefslogtreecommitdiffstats
path: root/progs/tests/stack_ordering.sy
diff options
context:
space:
mode:
Diffstat (limited to 'progs/tests/stack_ordering.sy')
-rw-r--r--progs/tests/stack_ordering.sy6
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/tests/stack_ordering.sy b/progs/tests/stack_ordering.sy
new file mode 100644
index 0000000..f13e5cf
--- /dev/null
+++ b/progs/tests/stack_ordering.sy
@@ -0,0 +1,6 @@
+start :: fn {
+ a := 1
+ b := 2
+ b <=> 2
+ a <=> 1
+}