da9f0e7af8
Sometimes there are legitimate reasons to have two separate signature dumps for K1 and K2. ^KT-61797 Fixed
13 lines
307 B
Kotlin
Vendored
13 lines
307 B
Kotlin
Vendored
// FULL_JDK
|
|
// SKIP_KLIB_TEST
|
|
// TARGET_BACKEND: JVM_IR
|
|
|
|
// SEPARATE_SIGNATURE_DUMP_FOR_K2
|
|
// ^ Value parameters in fake overrides generated by K1 and K2 are different
|
|
|
|
class A1 : java.util.ArrayList<String>()
|
|
|
|
class A2 : java.util.ArrayList<String>() {
|
|
override fun remove(x: String): Boolean = true
|
|
}
|