11 lines
119 B
JavaScript
11 lines
119 B
JavaScript
// Error: :7:17: Unexpected token ;
|
|
|
|
class A {}
|
|
|
|
class ImproperSuper extends A {
|
|
method() {
|
|
return super;
|
|
}
|
|
}
|
|
|