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