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

18 lines
235 B
Kotlin
Vendored

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