Reports var fields if they are used in hashCode.

Example:


  class Test {
    var value = 3
    override def hashCode(): Int =
      value // value can change, indicating a misuse in hashCode()
  }