# HG changeset patch # User Mike Pavone # Date 1342266411 25200 # Node ID 86ebdfb33711ace8628bbfa1f59f632c7f6b1b4c # Parent f57b2f4048d0d2403974f916df966c304d2afb2a Add sample for fixed bug diff -r f57b2f4048d0 -r 86ebdfb33711 samples/compilerbug_003.tp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/compilerbug_003.tp Sat Jul 14 04:46:51 2012 -0700 @@ -0,0 +1,18 @@ +{ + foo <- { 42 } + #{ + qux <- foo: + bar <- #{ + + baz <- { + foo: + } + + } + + main <- { + print: (string: (bar baz)) + } + } +} +