TypeScript/tests/baselines/reference/invocationExpressionInFunctionParameter.errors.txt
2014-07-24 19:39:50 -07:00

7 lines
314 B
Plaintext

==== tests/cases/compiler/invocationExpressionInFunctionParameter.ts (1 errors) ====
function foo1(val: string) {
}
function foo3(x = foo1(123)) { //should error, 123 is not string
~~~
!!! Argument of type 'number' is not assignable to parameter of type 'string'.
}