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

9 lines
342 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration8.ts (2 errors) ====
class C {
// Not a constructor
public constructor;
~
!!! error TS1005: '(' expected.
~~~~~~~~~~~~~~~~~~~
!!! error TS2390: Constructor implementation is missing.
}