Files
kotlin-fork/compiler/testData/debug/localVariables/constructors/property.kt
T
Ivan Kylchik eb86aabb50 [FIR LT] Unmute some stepping and local variable tests
Corresponding tests were fixed together with #KT-56982, #KT-56913,
#KT-56926
2023-03-21 16:33:00 +00:00

19 lines
358 B
Kotlin
Vendored

// FILE: test.kt
class F(val a: String)
fun box() {
F("foo")
}
// EXPECTATIONS JVM 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: