Reports non-prefix calls to unary_!, unary_~, and so on. Suggests replacing them with the prefix operator.

Example:


  val x = true.unary_!;

After the quick-fix is applied:


  val x = !true