Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f7ff397a310cd4d47fc4849043f8c9d47412e512
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmOverloads
/
privateClass.kt
blob: 00ecdaae4f8857876c75a7bbc7a20095aeb826e8 [
file
]
// IGNORE_BACKEND_FIR: 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
}