TypeScript/tests/baselines/reference/badOverloadError.types
2015-04-15 16:44:20 -07:00

12 lines
318 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
>{} : { [x: string]: undefined; }
}