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