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

9 lines
471 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts(2,18): error TS1093: Type annotation cannot appear on a constructor declaration.
2014-07-13 01:04:16 +02:00
==== tests/cases/conformance/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts (1 errors) ====
class C {
constructor(): number { }
~~~~~~
!!! error TS1093: Type annotation cannot appear on a constructor declaration.
2014-07-13 01:04:16 +02:00
}