# HG changeset patch # User Mike Pavone # Date 1342266965 25200 # Node ID b4190db72288d50151dbfd1bdc3ee52d6b586b33 # Parent 38127fbf5f9d0ed867064b89918f8a7d13b55ae8 Add sample for bug triggered by accessing a lambda-defined message in variable style diff -r 38127fbf5f9d -r b4190db72288 samples/compilerbug_005.tp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/samples/compilerbug_005.tp Sat Jul 14 04:56:05 2012 -0700 @@ -0,0 +1,6 @@ +#{ + foo <- { "foobar" } + main <- { + print: foo + } +}