Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/funOnUserObject.kt

7 lines
99 B
Kotlin
Vendored

// "Create member function 'foo'" "true"
object A
fun test() {
val a: Int = A.<caret>foo(2)
}