mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
200 B
Kotlin
12 lines
200 B
Kotlin
package protectedPack
|
|
|
|
class Derived(): protectedStaticClass() {
|
|
fun test(): String {
|
|
return protectedStaticClass.Inner().foo()!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Derived().test()
|
|
}
|