blob: 772a5ea10e644547ac9f84e08866791208b92733 [file] [log] [blame]
// 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
}