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

9 lines
180 B
Kotlin
Vendored

// INTENTION_TEXT: Replace with '*' operator
fun test() {
class Test {
operator fun times(a: Int): Test = Test()
}
val test = Test()
test.time<caret>s(1)
}