eb86aabb50
Corresponding tests were fixed together with #KT-56982, #KT-56913, #KT-56926
19 lines
358 B
Kotlin
Vendored
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:
|