Files
kotlin-fork/compiler/testData/codegen/boxWithStdlib/platformStatic/syntheticAccessor.kt
T
2014-12-03 15:49:20 +03:00

17 lines
243 B
Kotlin

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