TypeScript/tests/baselines/reference/nestedIndexer.types
2014-08-15 14:37:48 -07:00

12 lines
205 B
Plaintext

=== tests/cases/compiler/nestedIndexer.ts ===
function then(x) {
>then : (x: any) => void
>x : any
var match: { [index: number]: string; }
>match : { [x: number]: string; }
>index : number
}