Files
kotlin-fork/idea/testData/intentions/conventionNameCalls/replaceCallWithUnaryOperator/plusPlus.kt
T
2015-05-14 01:10:05 +03:00

8 lines
118 B
Kotlin

fun test() {
class Test {
fun plus(): Test = Test()
}
val test = Test()
+test.p<caret>lus()
}