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

9 lines
472 B
Plaintext
Raw Normal View History

tests/cases/conformance/parser/ecmascript5/ParameterLists/parserParameterList14.ts(2,7): error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
2014-07-13 01:04:16 +02:00
==== 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.
2014-07-13 01:04:16 +02:00
}