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

13 lines
145 B
Kotlin
Vendored

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