import kotlin.reflect.KProperty // "Create member function 'F.getValue'" "true" class F { operator fun getValue(x: X, property: KProperty<*>): Int { TODO("not implemented") //To change body of created functions use File | Settings | File Templates. } } class X { val f: Int by F() }