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