07ffac72cf
#KT-28694 Fixed
6 lines
102 B
Kotlin
Vendored
6 lines
102 B
Kotlin
Vendored
// FIX: Assign backing field
|
|
class Test {
|
|
var foo: Int = 1
|
|
<caret>set(value) {
|
|
}
|
|
} |