TypeScript/tests/baselines/reference/parserConstructorDeclaration8.errors.txt
2014-07-12 17:30:19 -07:00

9 lines
312 B
Plaintext

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