Files
kotlin/idea/testData/quickfix/createFromUsage/createFunction/call/funOnClassObject.kt
2016-07-20 15:39:19 +03:00

11 lines
157 B
Kotlin
Vendored

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