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

9 lines
122 B
Kotlin
Vendored

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