import kotlin.reflect.KProperty // "Create member function 'F.getValue'" "true" class F { operator fun getValue(x: X, property: KProperty<*>): Int { TODO("Not yet implemented") } } class X { val f: Int by F() }