TypeScript/tests/baselines/reference/arrayAssignmentPatternWithAny.types

14 lines
208 B
Plaintext
Raw Normal View History

=== tests/cases/conformance/es6/destructuring/arrayAssignmentPatternWithAny.ts ===
var a: any;
>a : any
var x: string;
>x : string
[x] = a;
>[x] = a : any
>[x] : [string]
>x : string
>a : any