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

5 lines
80 B
TypeScript

var a = 1;
function strange(x = a, y = b) {
var b = "";
return y;
}