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

9 lines
101 B
Kotlin
Vendored

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