33e6a85a2d
We exclude testData pattern from copyright scope
13 lines
216 B
Kotlin
Vendored
13 lines
216 B
Kotlin
Vendored
fun resolve<caret>Me() {
|
|
receive(withGetterAndSetter)
|
|
withGetterAndSetter = 123
|
|
}
|
|
|
|
fun receive(value: Int) {}
|
|
|
|
var withGetterAndSetter: Int = 42
|
|
get() = field
|
|
set(value) {
|
|
field = value
|
|
}
|