forked from Mirror/wren
6 lines
114 B
Plaintext
6 lines
114 B
Plaintext
// skip: Variables should not be in scope in their initializer.
|
|
{
|
|
var a = a + 1 // expect error
|
|
IO.write(a)
|
|
}
|