TypeScript/tests/cases/compiler/contextualTypingOfObjectLiterals.ts

10 lines
242 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
var obj1: { [x: string]: string; };
var obj2 = {x: ""};
obj1 = {}; // Ok
obj1 = obj2; // Error - indexer doesn't match
function f(x: { [s: string]: string }) { }
f({}); // Ok
f(obj1); // Ok
f(obj2); // Error - indexer doesn't match