blob: 7088c409edcc7d48d5258bb0449e0b0c01315407 [file]
// TARGET_BACKEND: JVM
// WITH_STDLIB
private data class C(val status: String = "OK")
fun box(): String {
val c = (C::class.java.getConstructor().newInstance())
return c.status
}