blob: b487b6a14a5a6e77016deaf75f8a3a60a039c3e6 [file]
// TARGET_BACKEND: JVM_IR
// COMMENTED[LANGUAGE: +ProperFieldAccessGenerationForFieldAccessShadowedByKotlinProperty] uncomment when KT-56386 is fixed
// IGNORE_BACKEND: JVM_IR
// Reason: KT-56386 is not fixed yet
// FILE: Jaba.java
public class Jaba {
public String a = "OK";
}
// FILE: test.kt
class My : Jaba() {
private val a: String = "FAIL"
operator fun plus(my: My) = my
}
fun create(): My? = My()
fun box(): String {
return (create() ?: My()).a
}