FIR Java: correctly handle overridden Kotlin properties in use-site scope
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
open class Base {
|
||||
open val some: String get() = "Base"
|
||||
}
|
||||
|
||||
open class Derived : Base() {
|
||||
override val some: String get() = "Derived"
|
||||
}
|
||||
Reference in New Issue
Block a user