Files
kotlin-fork/compiler/testData/codegen/box/publishedApi/simple.kt
T
2016-12-09 11:55:16 +01:00

12 lines
150 B
Kotlin
Vendored

class A {
@PublishedApi
internal fun published() = "OK"
inline fun test() = published()
}
fun box() : String {
return A().test()
}