Files
kotlin/compiler/testData/codegen/bytecodeText/accessorForProtected.kt
2014-03-31 21:27:13 +04:00

17 lines
257 B
Kotlin
Vendored

package a
open class A {
protected fun protectedFun(): String = "OK"
}
class BSamePackage: A() {
fun test(): String {
val a = {
protectedFun()
}
return a()
}
}
// 0 INVOKESTATIC a/BSamePackage.protectedFun