Files
kotlin-fork/compiler/testData/integration/ant/jvm/internalMembers/module1.kt
T
2015-10-07 18:10:54 +03:00

11 lines
146 B
Kotlin
Vendored

package hello
open class A {
internal val z: String = "A_O"
internal fun test() = "A_K"
}
public fun invokeOnA(a: A) = a.z + a.test()