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

7 lines
126 B
Kotlin
Vendored

fun test() {
class Test()
operator fun Test.div(a: Int): Test = Test()
val test = Test()
test.<caret>div(1)
}