Files
kotlin-fork/compiler/testData/debug/localVariables/constructors/property.kt
T
2023-12-18 21:42:35 +00:00

19 lines
354 B
Kotlin
Vendored

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