Files
kotlin-fork/compiler/testData/debug/localVariables/receiverMangling/receiverParameter.kt
T
2020-11-18 15:18:10 +01:00

13 lines
195 B
Kotlin
Vendored

// FILE: test.kt
fun String.test() {
}
fun box() {
"OK".test()
}
// LOCAL VARIABLES
// test.kt:7 box:
// test.kt:4 test: $this$test:java.lang.String="OK":java.lang.String
// test.kt:8 box: