mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
12 lines
217 B
Kotlin
Vendored
12 lines
217 B
Kotlin
Vendored
// IGNORE_BACKEND: JVM_IR
|
|
// 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
|
|
}
|