12 lines
150 B
Kotlin
Vendored
12 lines
150 B
Kotlin
Vendored
class A {
|
|
|
|
@PublishedApi
|
|
internal fun published() = "OK"
|
|
|
|
inline fun test() = published()
|
|
|
|
}
|
|
|
|
fun box() : String {
|
|
return A().test()
|
|
} |