报告任何从未更新且可能是 val 的非 public var。
val
var
示例:
class Foo { private var s = 0 println(s) }
在应用快速修复后:
class Foo { private val s = 0 println(s) }