1
0
forked from Mirror/wren
Files
wren/test/variable/local_in_initializer.wren
2013-12-21 19:25:09 -08:00

6 lines
114 B
Plaintext

// skip: Variables should not be in scope in their initializer.
{
var a = a + 1 // expect error
IO.write(a)
}