f98a22e8e4
Invert the logic of IR/FIR2IR-based generators: change the CLI argument to -Xuse-fir-fake-override-builder, test directive to USE_FIR_BASED_FAKE_OVERRIDE_GENERATOR, etc. The changes in test data caused by using IR fake override builder by default are in the subsequent commit. #KT-61514
15 lines
321 B
Kotlin
Vendored
15 lines
321 B
Kotlin
Vendored
// WITH_REFLECT
|
|
// TARGET_BACKEND: JVM_IR
|
|
// SEPARATE_SIGNATURE_DUMP_FOR_K2
|
|
// ^ Value parameters in fake overrides generated by K1 and K2 are different
|
|
|
|
// FILE: Java1.java
|
|
public class Java1 extends KotlinClass { }
|
|
|
|
// FILE: 1.kt
|
|
import java.util.ArrayList
|
|
|
|
class A : Java1()
|
|
|
|
open class KotlinClass : ArrayList<Int>()
|