TypeScript/tests/baselines/reference/optionalParamReferencingOtherParams3.errors.txt
2014-09-12 13:35:07 -07:00

10 lines
440 B
Plaintext

tests/cases/compiler/optionalParamReferencingOtherParams3.ts(1,20): error TS2373: Initializer of parameter 'a' cannot reference identifier 'b' declared after it.
==== 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;
}