==== tests/cases/compiler/assignmentCompat1.ts (2 errors) ==== var x = {one: 1}; var y: {[index:string]: any}; x = y; ~ !!! Type '{ [x: string]: any; }' is not assignable to type '{ one: number; }': !!! Property 'one' is missing in type '{ [x: string]: any; }'. y = x; ~ !!! Type '{ one: number; }' is not assignable to type '{ [x: string]: any; }': !!! Index signature is missing in type '{ one: number; }'.