Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/delegateAccessors/var.kt
2016-07-20 15:39:19 +03:00

9 lines
126 B
Kotlin
Vendored

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