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
classFoo{notAssigned: f64;// <-- should be compile error "Property 'notAssigned' has no initializer and is not definitely assigned in the constructor."nonAssignedButIgnored!: f64;// has exclamation mark so valid and init as zero (default)}
classFoo{notAssigned: f64;// ok! Now assigned in constructornonAssignedButIgnored!: f64;// ok!constructor(){this.notAssigned=0;}}