Files

9 lines
89 B
Kotlin
Vendored

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