TypeScript/tests/cases/compiler/optionalParamReferencingOtherParams3.ts
2014-07-12 17:30:19 -07:00

4 lines
49 B
TypeScript

function right(a = b, b = a) {
a;
b;
}