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

9 lines
112 B
Kotlin
Vendored

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