JVM_IR KT-43440 private-to-this default interface funs are private

This commit is contained in:
Dmitry Petrov
2020-11-23 11:27:38 +03:00
parent bf7fdcda6e
commit 551d0c1b64
5 changed files with 87 additions and 28 deletions
+11
View File
@@ -0,0 +1,11 @@
interface A<in T> {
private fun f(): T {
TODO()
}
}
interface B<out T> {
private fun f(): T {
TODO()
}
}