mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
10 lines
172 B
Kotlin
Vendored
10 lines
172 B
Kotlin
Vendored
class A: funCallInConstructor(funCallInConstructor.protectedFun()) {
|
|
fun test(): String {
|
|
return protectedProperty!!
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return A().test()
|
|
}
|