Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceInvoke/functionLiteralInvoke.kt.after
T
2015-12-17 11:11:27 +03:00

10 lines
125 B
Plaintext
Vendored

fun test() {
class Test {
operator fun invoke(fn: () -> Unit) {}
}
val test = Test()
test {
}
}