TypeScript/tests/cases/compiler/assignmentCompat1.ts

8 lines
227 B
TypeScript
Raw Normal View History

2015-07-30 19:01:34 +02:00
var x = { one: 1 };
var y: { [index: string]: any };
var z: { [index: number]: any };
x = y; // Error
y = x; // Ok because index signature type is any
x = z; // Error
z = x; // Ok because index signature type is any