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.