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

8 lines
445 B
Plaintext
Raw Normal View History

tests/cases/compiler/defaultValueInFunctionOverload1.ts(1,14): error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/defaultValueInFunctionOverload1.ts (1 errors) ====
function foo(x: string = '');
~~~~~~~~~~~~~~
!!! error TS2371: A parameter initializer is only allowed in a function or constructor implementation.
2014-07-13 01:04:16 +02:00
function foo(x = '') { }