Files
kotlin-fork/compiler/testData/ir/irText/expressions/extensionPropertyGetterCall.kt.txt
T
2024-02-16 10:19:38 +00:00

10 lines
126 B
Kotlin
Vendored

fun String.test5(): String {
return <this>.<get-okext>()
}
val String.okext: String
get(): String {
return "OK"
}