mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 04:01:39 +03:00
15 lines
235 B
TypeScript
15 lines
235 B
TypeScript
|
// @target: es5
|
|||
|
|
|||
|
interface ISomething {
|
|||
|
foo: string,
|
|||
|
bar: string
|
|||
|
}
|
|||
|
|
|||
|
function foo({}, {foo, bar}: ISomething) {}
|
|||
|
|
|||
|
function baz([], {foo, bar}: ISomething) {}
|
|||
|
|
|||
|
function one([], {}) {}
|
|||
|
|
|||
|
function two([], [a, b, c]: number[]) {}
|