Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceCallWithBinaryOperator/timesSanityTest.kt
T

9 lines
169 B
Kotlin
Vendored

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