Reports lateinit var properties that override another lateinit var property.

A subclass instance will have two fields for the single property, and the one from the superclass will remain effectively unused.

Example:

open class BaseClass { open lateinit var name: String } class RealClass : BaseClass() { override lateinit var name: String }