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

10 lines
479 B
Plaintext

tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration15.ts(2,4): error TS2391: Function implementation is missing or not immediately following the declaration.
==== tests/cases/conformance/parser/ecmascript5/ClassDeclarations/parserClassDeclaration15.ts (1 errors) ====
class C {
foo();
~~~
!!! error TS2391: Function implementation is missing or not immediately following the declaration.
constructor() { }
}