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

9 lines
103 B
Kotlin
Vendored

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