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
export function _start(): void {
let value: A | null = new A();
if (value != null) {
// value = null; // cause compile error correctly
true && (value = null); // compile passed, but value is changed to zero now
let a1 = value.a1;
}
}