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

3 lines
69 B
TypeScript

function strange(x: number, y = x * 1, z = x + y) {
return z;
}