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

8 lines
116 B
Kotlin
Vendored

fun test() {
class Test(val v: Int)
operator fun Test.invoke(): Unit = Unit
Test(1).i<caret>nvoke()
}