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
Currently, strong mode does not infer the type of the parameter x in the code below:
void f({x: false}) {
...
}
It seems like it would be reasonable to do so, since it would be similar to the way it infers the type of variables from their initializer expressions.