Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/beforeVarMissingSet.kt
2014-10-22 18:42:54 +04:00

9 lines
162 B
Kotlin

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