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

9 lines
154 B
Kotlin

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