blob: ebbb041dab9660eec54e3fc43c71fede58ea721a [file]
class Foo {
operator fun invoke(vararg a: Any) {}
}
fun test(f: Foo) {
f(1<caret>)
}