import kotlin.reflect.KProperty class X(t: T) { operator fun getValue(thisRef: C, property: KProperty<*>): T = throw Exception() } class C { val property: T2 by } // EXIST: lazy // ABSENT: X