Files
wren/test/super/super_in_static_method.wren
T
Bob Nystrom e8791b6bab Don't inherit metaclasses.
Also disallow super() in static methods. It won't do anything
useful (it always just delegates to Class) anyway.
2014-01-17 17:29:10 -08:00

6 lines
62 B
Plaintext

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