Also disallow super() in static methods. It won't do anything useful (it always just delegates to Class) anyway.
6 lines
62 B
Plaintext
6 lines
62 B
Plaintext
class Foo {
|
|
static method {
|
|
super // expect error
|
|
}
|
|
}
|