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

8 lines
109 B
TypeScript

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