TypeScript/tests/cases/conformance/es6/destructuring/optionalBindingParametersInOverloads1.ts
Daniel Rosenwasser dafe7c8958 Added tests.
2015-01-14 17:02:31 -08:00

9 lines
143 B
TypeScript

function foo([x, y, z] ?: [string, number, boolean]);
function foo(...rest: any[]) {
}
foo(["", 0, false]);
foo([false, 0, ""]);