<!-- BUGS: Please use this template. --> <!-- QUESTIONS: This is not a general support forum! Ask Qs at http://stackoverflow.com/questions/tagged/typescript --> <!-- SUGGESTIONS: See https://github.com/Microsoft/TypeScript-wiki/blob/master/Writing-Good-Design-Proposals.md --> **TypeScript Version:** 1.8.10 **Code** ``` ts let myString: string = '123'; myString += 123123; console.log(myString); // returns number ``` *_Expected behavior: Type 'number' is not assignable to type 'string'. *_ *_Actual behavior: 123123123 (number, no error) *_