Files
kotlin-fork/compiler/testData/resolvedCalls/invoke/invokeOnClassObject2.kt
T

7 lines
97 B
Kotlin
Vendored

class A {
companion object {
fun invoke(i: Int) = i
}
}
fun test() = A<caret>(1)