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

10 lines
136 B
Plaintext
Vendored

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