TypeScript/tests/baselines/reference/badOverloadError.types
2016-02-09 15:36:40 -08:00

12 lines
293 B
Plaintext

=== tests/cases/compiler/badOverloadError.ts ===
function method() {
>method : () => void
var dictionary = <{ [index: string]: string; }>{};
>dictionary : { [index: string]: string; }
><{ [index: string]: string; }>{} : { [index: string]: string; }
>index : string
>{} : {}
}