Reports non-prefix calls to unary_!, unary_~, and so on. Suggests replacing them with the prefix operator.
unary_!
unary_~
Example:
val x = true.unary_!;
After the quick-fix is applied:
val x = !true