import kotlin.reflect.KProperty const val f = 24 const val l = 3 get const val k: Int get const val t: Int get() = 24 class Test { operator fun getValue(nothing: Nothing?, property: KProperty<*>): Int { return 123 } } const val delegated: Int by Test() const val e: Boolean get() = false const val property: String = "123" get() = field + " 123 123"