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

13 lines
145 B
Kotlin

package b
import a.A
class B: A() {
fun test(): String {
val a = {
protectedFun()
}
return a()
}
}