TypeScript/tests/baselines/reference/nestedIndexer.types
2014-08-25 10:55:22 -07:00

11 lines
200 B
Text

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