Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/scopes/kotlinAccessorsLikeFunctionsThrowJavaClass.kt
T
Dmitrii Gridin 9a4a3d1f49 [LL FIR] introduce test with reversed resolve order
^KT-56543

Merge-request: KT-MR-9299
Merged-by: Dmitrii Gridin <dmitry.gridin@jetbrains.com>
2023-03-22 17:34:07 +00:00

25 lines
411 B
Kotlin
Vendored

// IGNORE_REVERSED_RESOLVE
// FILE: A.kt
open class A {
open fun getScope(): String? = null
fun setScope(scope: String?): A {
return this
}
protected var scope: String? = null
}
// FILE: B.java
public class B extends A {
@java.lang.Override
public String getScope() {
return null;
}
}
// FILE: main.kt
fun test(b: B) {
val s = b.getScope()
b.setScope(s)
}