TypeScript/tests/baselines/reference/optionalParamReferencingOtherParams3.errors.txt
2014-09-11 16:11:08 -07:00

7 lines
273 B
Plaintext

==== tests/cases/compiler/optionalParamReferencingOtherParams3.ts (1 errors) ====
function right(a = b, b = a) {
~
!!! error TS2373: Initializer of parameter 'a' cannot reference identifier 'b' declared after it.
a;
b;
}