Files
kotlin-fork/compiler/testData/ir/interpreter/jvm/kProperty2.kt
T
2022-03-30 08:35:21 +00:00

12 lines
254 B
Kotlin
Vendored

package test
import kotlin.collections.*
@CompileTimeCalculation
class A(val a: Int) {
val String.size: Int
get() = this.length * a
}
const val kproperty2Get = <!EVALUATED: `6`!>A::class.members.toList()[1].call(A(2), "123").toString()<!>