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