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

10 lines
149 B
Kotlin
Vendored

// PROBLEM: none
fun test() {
class Test {
operator fun mod(a: Int): Test = Test()
}
val test = Test()
test.<caret>mod(1)
}