Files
wren/test/variable/local_in_initializer.wren
T

6 lines
114 B
Plaintext
Raw Normal View History

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