TypeScript/tests/baselines/reference/ClassDeclaration11.errors.txt

10 lines
314 B
Plaintext
Raw Normal View History

tests/cases/compiler/ClassDeclaration11.ts(2,4): error TS2390: Constructor implementation is missing.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/ClassDeclaration11.ts (1 errors) ====
class C {
constructor();
~~~~~~~~~~~~~~
!!! error TS2390: Constructor implementation is missing.
2014-07-13 01:04:16 +02:00
foo() { }
}