c52b9032ce
We should process them independently as they can be not related to each other ^KT-65563 Fixed
28 lines
508 B
Kotlin
Vendored
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) {
|
|
|
|
}
|
|
}
|