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

6 lines
62 B
Plaintext
Raw Normal View History

2014-01-17 17:29:10 -08:00
class Foo {
static method {
super // expect error
}
}