Files
wren/test/language/super/super_in_static_method.wren
T

6 lines
62 B
Plaintext
Raw Normal View History

class Foo {
static method {
super // expect error
}
}