[K/N] keep internal members in header klibs

This is also the behavior of jvm-abi-gen and desired to support
friend modules.
^KT-65442
This commit is contained in:
Johan Bay
2024-01-09 15:32:15 +01:00
committed by Space Cloud
parent a2516548e4
commit 446db595ce
12 changed files with 27 additions and 35 deletions
@@ -1,7 +1,7 @@
package test
private interface A {
fun foo() = 0
fun foo(): Int { if (true) return 1 else return 0 }
fun bar(): String
}