Write some more scope edge case tests.

This commit is contained in:
Bob Nystrom
2013-12-14 16:36:19 -08:00
parent 7fe60499db
commit f5e4f95069
4 changed files with 26 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
{
var a = "outer"
{
io.write(a) // expect: outer
var a = "inner"
io.write(a) // expect: inner
}
}