Files

8 lines
97 B
Kotlin
Vendored

interface Foo
operator fun <T> Foo.invoke(t: T) {}
fun test(f: Foo) {
<expr>f("")</expr>
}