16a133bf5c
#KT-14408 Fixed
11 lines
190 B
Kotlin
Vendored
11 lines
190 B
Kotlin
Vendored
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_RUNTIME
|
|
|
|
private data class C(val status: String = "OK")
|
|
|
|
fun box(): String {
|
|
val c = (C::class.java.getConstructor().newInstance())
|
|
return c.status
|
|
}
|