mirror of
https://github.com/swc-project/swc.git
synced 2024-12-30 00:52:29 +03:00
12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
|
declare const a: [number, string]
|
||
|
declare const rest: [number, string, ...boolean[]]
|
||
|
|
||
|
const a1 = a[1]
|
||
|
const a2 = a[2]
|
||
|
const a3 = a[1000]
|
||
|
|
||
|
const a4 = rest[1]
|
||
|
const a5 = rest[2]
|
||
|
const a6 = rest[3]
|
||
|
const a7 = rest[1000]
|