blob: 56f54bf5960293277ffddc987c8e72126cb8bfcf [file] [log] [blame]
fun interface A {
operator fun invoke()
}
fun foo(a: A) {
<caret>a()
}