Files
kotlin-fork/compiler/testData/compileKotlinAgainstKotlin/jvmField.B.kt
T
2015-10-13 10:50:09 +03:00

9 lines
181 B
Kotlin
Vendored

open class C : B() {
fun test(): String {
return super.publicField + super.internalField + super.protectedfield
}
}
fun main(args: Array<String>) {
C().test()
}