TypeScript/tests/baselines/reference/parserConstructorDeclaration2.errors.txt
2014-09-12 13:35:07 -07:00

9 lines
456 B
Plaintext

tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration2.ts(2,3): error TS1089: 'static' modifier cannot appear on a constructor declaration.
==== tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration2.ts (1 errors) ====
class C {
static constructor() { }
~~~~~~
!!! error TS1089: 'static' modifier cannot appear on a constructor declaration.
}