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

9 lines
161 B
Kotlin
Vendored

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