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