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

11 lines
134 B
Kotlin

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