Files
wren/test/language/continue/in_method_in_loop.wren
Alan Stagner 55b926410d Add continue statement (#822)
Note that documentation is still required.
2020-12-03 08:30:36 -08:00

10 lines
117 B
Plaintext

var done = false
while (!done) {
class Foo {
method {
continue // expect error
}
}
done = true
}