TypeScript/tests/baselines/reference/parserParameterList14.errors.txt
2014-09-11 16:11:08 -07:00

6 lines
279 B
Plaintext

==== tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList14.ts (1 errors) ====
declare class C {
foo(a = 1): void;
~~~~~
!!! error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
}