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

17 lines
248 B
Kotlin
Vendored

import kotlin.platform.*
class C {
companion object {
private @platformStatic fun foo(): String {
return "OK"
}
}
fun bar(): String {
return foo()
}
}
fun box(): String {
return C().bar()
}