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
9 lines
114 B
Kotlin
Vendored
9 lines
114 B
Kotlin
Vendored
// FIR_COMPARISON
|
|
|
|
fun localFun() {}
|
|
|
|
var property: Int
|
|
get() = 1
|
|
set(value) = <caret>
|
|
|
|
// EXIST: localFun |