Files
kotlin-fork/compiler/testData/diagnostics/tests/operatorRem/preferRemOverModInLocalFunctions.kt
T
Nikolay Lunyak e2403c801f [FIR] KT-55747: Report error for operator fun mod
^KT-55747 Fixed

Merge-request: KT-MR-8522
Merged-by: Nikolay Lunyak <Nikolay.Lunyak@jetbrains.com>
2023-01-30 08:48:33 +00:00

31 lines
472 B
Kotlin
Vendored

// FIR_IDENTICAL
// !LANGUAGE: -ProhibitOperatorMod
// !DIAGNOSTICS: -UNUSED_PARAMETER
object B
class A {
operator fun B.rem(x: Int) = 0
}
fun test1() {
<!DEPRECATED_BINARY_MOD!>operator<!> fun B.mod(x: Int) = ""
with(A()) {
takeInt(B % 10)
}
}
class C {
<!DEPRECATED_BINARY_MOD!>operator<!> fun B.mod(x: Int) = ""
}
fun test2() {
operator fun B.rem(x: Int) = 0
with(C()) {
takeInt(B % 10)
}
}
fun takeInt(x: Int) {}