blob: c8972266795896b526515a59cba806f303e96d70 [file]
// RUN_PIPELINE_TILL: FRONTEND
// ISSUE: KT-61182
object Foo
operator fun Foo.invoke(f: () -> Unit) {
f()
}
fun test(g: () -> Int) {
Foo(g)
}
/* GENERATED_FIR_TAGS: funWithExtensionReceiver, functionDeclaration, functionalType, objectDeclaration, operator */