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

9 lines
157 B
Plaintext
Vendored

// FIX: Replace with '-' operator
fun test() {
class Test {
operator fun minus(a: Int): Test = Test()
}
val test = Test()
test - 1
}