mirror of
https://github.com/swc-project/swc.git
synced 2024-11-28 11:13:43 +03:00
9 lines
135 B
TypeScript
9 lines
135 B
TypeScript
|
|
function foo([x, y, z] ?: [string, number, boolean]);
|
|
function foo(...rest: any[]) {
|
|
|
|
}
|
|
|
|
foo(["", 0, false]);
|
|
|
|
foo([false, 0, ""]); |