changeset 65:b4190db72288

Add sample for bug triggered by accessing a lambda-defined message in variable style
author Mike Pavone <pavone@retrodev.com>
date Sat, 14 Jul 2012 04:56:05 -0700
parents 38127fbf5f9d
children 25b697c91629
files samples/compilerbug_005.tp
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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
+	}
+}