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
typefoo={bar: number|null;}constaFoo: foo={bar: 3};if(aFoo.bar){const{ bar }=aFoo;constright: number=aFoo.bar;constwrong: number=bar;// error : Type 'number | null' is not assignable to type 'number'}
Expected behavior: bar has the type number.
Actual behavior:
Forgets that we checked and gives bar its original type value: number | null.