TypeScript/tests/baselines/reference/superCallOutsideConstructor.errors.txt
2014-09-11 16:11:08 -07:00

29 lines
839 B
Plaintext

==== tests/cases/compiler/superCallOutsideConstructor.ts (3 errors) ====
class C {
foo() { }
}
class D extends C {
x = super();
~~~~~
!!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside constructors
constructor() {
super();
var y = () => {
super();
~~~~~
!!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside constructors
}
var y2 = function() {
super();
~~~~~
!!! error TS2337: Super calls are not permitted outside constructors or in nested functions inside constructors
}
}
}
var d = new D();