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

9 lines
169 B
Kotlin

// INTENTION_TEXT: Replace with '+' operator
fun test() {
class Test {
fun plus(a: Int): Test = Test()
}
val test = Test()
test.pl<caret>us(1)
}