mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
10 lines
188 B
Kotlin
10 lines
188 B
Kotlin
class Derived(): funNestedStaticClass2.A.B() {
|
|
fun test(): String {
|
|
return funNestedStaticClass2.A.B.protectedFun()!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Derived().test()
|
|
}
|