Files

9 lines
90 B
Kotlin
Vendored

class Foo {
operator fun invoke(vararg a: Any) {}
}
fun test(f: Foo) {
f<caret>()
}