Files
2021-10-26 08:50:37 +00:00

6 lines
78 B
Kotlin
Vendored

fun interface A {
operator fun invoke()
}
fun foo(a: A) {
<caret>a()
}