[klibs] header klibs should keep private interfaces
^KT-62213 Fixed
This commit is contained in:
+5
-1
@@ -5,7 +5,11 @@ interface I {
|
||||
fun iMethod(): Int
|
||||
}
|
||||
|
||||
open class A : I {
|
||||
private interface K {
|
||||
fun kMethod() = 42
|
||||
}
|
||||
|
||||
open class A : I, K {
|
||||
override val iProperty: Int = 0
|
||||
override fun iMethod(): Int = 10
|
||||
|
||||
|
||||
Reference in New Issue
Block a user