You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
classA{name: string;}classB{age: number;}letx: A|B;if(xinstanceofA){console.log(x.name);// ok: x has type AsetTimeout(()=>{console.log(x.name);// ** COMPILE ERROR: x has type A | B here});}else{console.log(x.age);// ok: x has type B heresetTimeout(()=>{console.log(x.age);// ** COMPILE ERROR: x has type A | B here});}
Expected behavior:
This should compile.
Actual behavior:
It does not compile
The text was updated successfully, but these errors were encountered:
See #9998 and #11498.
In this case I think the behavior is correct; x is mutable so it could be different by the time the timeout is called. You can fix this by using const instead of let.
In my.situation (and indeed the repro) it is not possible for x to have been mutated, but I can see that in general case that's harder to work out definitively. Thanks for the const tip.
This could be a dup of #14748; they seem related
TypeScript Version: 2.7.0-dev.20171102
Code
See in playground
Expected behavior:
This should compile.
Actual behavior:
It does not compile
The text was updated successfully, but these errors were encountered: