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

8 lines
141 B
Kotlin
Vendored

fun test() {
class Test {
operator fun invoke(a: Int, b: String) {}
}
val test = Test()
test.i<caret>nvoke(1, "s")
}