Files
kotlin-fork/compiler/testData/codegen/boxInline/syntheticAccessors/protectedMembers.2.kt
T
2015-11-11 14:34:48 +03:00

17 lines
238 B
Kotlin
Vendored

package test
open class P {
protected open val FOO = "O"
protected open fun test() = "K"
inline fun protectedProp(): String {
return FOO
}
inline fun protectedFun(): String {
return test()
}
}