FE: add test for KT-58840

This commit is contained in:
Mikhail Glukhikh
2023-05-23 11:48:58 +02:00
committed by Space Team
parent 2fcd296db8
commit 5f1976c450
2 changed files with 9 additions and 33 deletions
@@ -11,3 +11,12 @@ open class A {
}
}
open class Owner {
protected open class A : Owner() {
protected open class ProtectedInA
}
protected abstract class B : A() {
protected abstract fun foo(): ProtectedInA
}
}