Files
kotlin-fork/compiler/testData/debug/localVariables/receiverMangling/receiverParameter.kt
T
2022-11-09 12:35:44 +00:00

19 lines
308 B
Kotlin
Vendored

// FILE: test.kt
fun String.test() {
}
fun box() {
"OK".test()
}
// EXPECTATIONS JVM JVM_IR
// test.kt:7 box:
// test.kt:4 test: $this$test:java.lang.String="OK":java.lang.String
// test.kt:8 box:
// EXPECTATIONS JS_IR
// test.kt:7 box:
// test.kt:4 test: <this>="OK":kotlin.String
// test.kt:8 box: