3ede93df11
#KT-20273 Fixed
8 lines
120 B
Kotlin
Vendored
8 lines
120 B
Kotlin
Vendored
class Test {
|
|
var foo: Int = 1
|
|
<caret>set(value) {
|
|
bar(field)
|
|
}
|
|
|
|
fun bar(i: Int) {}
|
|
} |