Files
kotlin-fork/idea/testData/inspectionsLocal/conventionNameCalls/replaceCallWithBinaryOperator/remSanityTest.kt.after
T
2017-12-26 18:39:51 +03:00

10 lines
147 B
Plaintext
Vendored

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