57f429206c
^KTIJ-25412 Update equivalence checks for light accessor methods and light fields to make them equivalent if they share the same underlying property. Follow the `kotlinOrigin` declaration: even if there is a property accessor, use property declaration.
6 lines
161 B
Kotlin
Vendored
6 lines
161 B
Kotlin
Vendored
// org.jetbrains.kotlin.light.classes.symbol.fields.SymbolLightFieldForProperty
|
|
class FooBar {
|
|
var f<caret>oo : String = "42"
|
|
get() = "42"
|
|
|
|
} |