Don't generate implicit overrides delegating to Java defaults

#KT-40920 Fixed
This commit is contained in:
Mikhael Bogdanov
2020-08-10 12:24:54 +02:00
parent 07aee8831e
commit 607f99ed3c
11 changed files with 339 additions and 2 deletions
@@ -0,0 +1,28 @@
// !JVM_DEFAULT_MODE: disable
// JVM_TARGET: 1.8
// TARGET_BACKEND: JVM
// IGNORE_BACKEND_FIR: JVM_IR
// FILE: JBase.java
public interface JBase extends Base {
default String test() {
return "OK";
}
}
// FILE: main.kt
// WITH_RUNTIME
interface Base {
fun test(): String = "Base"
}
interface LeftBase : Base
interface Right : JBase
interface Child : LeftBase, Right
fun box(): String {
return object : Child {}.test()
}