Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/var.kt
T

9 lines
105 B
Kotlin

// "Create function 'get', function 'set'" "true"
class F {
}
class X {
var f: Int by F()<caret>
}