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

9 lines
471 B
Plaintext

tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts(2,18): error TS1093: Type annotation cannot appear on a constructor declaration.
==== tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts (1 errors) ====
class C {
constructor(): number { }
~~~~~~
!!! error TS1093: Type annotation cannot appear on a constructor declaration.
}