dcc22d3e5d
Property consists of getter and setter (both optional). The setter have a single `value` parameter with type Because of it, we have to make a separate 'frankenstein setter' with original resolved header, but with the body of the fake one It seems that getters does not have such issues
10 lines
114 B
Kotlin
Vendored
10 lines
114 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
|
|
fun localFun(): Int {}
|
|
|
|
val property: Int
|
|
get() {
|
|
<caret>
|
|
}
|
|
|
|
// EXIST: localFun |