Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
073a50037049a4e0869085bf4acf7c29e56210e3
/
.
/
compiler
/
testData
/
codegen
/
box
/
jvmOverloads
/
privateClass.kt
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
}