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

21 lines
360 B
Kotlin
Vendored

// FILE: test.kt
class F(val a: String)
fun box() {
F("foo")
}
// EXPECTATIONS JVM JVM_IR
// test.kt:7 box:
// test.kt:4 <init>: a:java.lang.String="foo":java.lang.String
// test.kt:7 box:
// test.kt:8 box:
// EXPECTATIONS JS_IR
// test.kt:7 box:
// test.kt:4 <init>: a="foo":kotlin.String
// test.kt:4 <init>: a="foo":kotlin.String
// test.kt:8 box: