Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/jvmStatic/syntheticAccessor.kt
T

15 lines
217 B
Kotlin
Vendored

class C {
companion object {
private @JvmStatic fun foo(): String {
return "OK"
}
}
fun bar(): String {
return foo()
}
}
fun box(): String {
return C().bar()
}