TypeScript/tests/baselines/reference/defaultValueInFunctionOverload1.errors.txt
2014-07-12 17:30:19 -07:00

5 lines
264 B
Plaintext

==== tests/cases/compiler/defaultValueInFunctionOverload1.ts (1 errors) ====
function foo(x: string = '');
~~~~~~~~~~~~~~
!!! A parameter initializer is only allowed in a function or constructor implementation.
function foo(x = '') { }