1
0
forked from Mirror/wren
Files
wren/test/language/class/attributes/invalid_scope.wren
ruby a4ae905384 Introduce Attributes (#962)
* introduce Attributes for classes and methods
2021-04-08 21:30:09 -07:00

11 lines
99 B
Plaintext

#valid
class Example {
#valid
method() {
#invalid // expect error
var a = 3
}
}