11 lines
191 B
Kotlin
Vendored
11 lines
191 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
|
|
// WITH_RUNTIME
|
|
|
|
private data class C(val status: String = "OK")
|
|
|
|
fun box(): String {
|
|
val c = (C::class.java.getConstructor().newInstance())
|
|
return c.status
|
|
}
|