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

11 lines
145 B
Kotlin
Vendored

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