Files
Dmitrii Gridin c52b9032ce [LL FIR] pull up custom logic for synthetic properties and accessors
We should process them independently as they can be not related to each
other

^KT-65563 Fixed
2024-02-08 22:28:13 +00:00

28 lines
508 B
Kotlin
Vendored

// SKIP_WHEN_OUT_OF_CONTENT_ROOT
// MODULE: lib
// MODULE_KIND: LibraryBinary
// FILE: BaseKotlin.kt
open class BaseKotlin : BaseJava() {
override fun getSomething(): String = "42"
}
// FILE: BaseJava.java
public class BaseJava {
public String getSomething() {
return "";
}
public void setSomething(String s) {
}
}
// MODULE: main(lib)
// MEMBER_NAME_FILTER: something
// FILE: main.kt
class Deri<caret>ved : BaseKotlin() {
override fun setSomething(s: String) {
}
}