Files

8 lines
90 B
Kotlin
Vendored

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