TypeScript/tests/cases/conformance/es6/destructuring/optionalBindingParameters1.ts

8 lines
109 B
TypeScript
Raw Normal View History

2015-01-15 02:02:31 +01:00

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