Reports top-level val properties in objects that might be declared as const for better performance and Java interoperability.

Example:


  object A {
      val foo = 1
  }

After the quick-fix is applied:


  object A {
      const val foo = 1
  }