Reports any non-public var that is never updated and could be a val.

Example:


  class Foo {
    private var s = 0
    println(s)
  }

After the quick-fix is applied:


  class Foo {
    private val s = 0
    println(s)
  }