8fb818fc74
So #KT-16339 Fixed
9 lines
144 B
Kotlin
Vendored
9 lines
144 B
Kotlin
Vendored
open class Test {
|
|
open protected fun test() {}
|
|
}
|
|
|
|
class Subclass : Test() {
|
|
protected override fun test() {
|
|
super.test()
|
|
}
|
|
} |