报告对 unary_!、unary_~ 等的非前缀调用。 建议将其替换为前缀运算符。
unary_!
unary_~
示例:
val x = true.unary_!;
在应用快速修复后:
val x = !true