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

7 lines
92 B
Kotlin

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