12 lines
247 B
Kotlin
Vendored
12 lines
247 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 = A::class.members.toList()[1].call(A(2), "123").toString() TODO -> `6`
|