Reports negated binary expressions that can be simplified.

The quick-fix simplifies the binary expression.

Example:


  fun test(n: Int) {
      !(0 == 1)
  }

After the quick-fix is applied:


  fun test(n: Int) {
      0 != 1
  }