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

5 lines
279 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/defaultValueInFunctionTypes.ts (1 errors) ====
var x: (a: number = 1) => number;
~~~~~~~~~~~~~
!!! A parameter initializer is only allowed in a function or constructor implementation.
var y = <(a : string = "") => any>(undefined)