5869274ff1
Otherwise these tests will fail with LV=1.3
13 lines
202 B
Kotlin
Vendored
13 lines
202 B
Kotlin
Vendored
// "Rename to 'rem'" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
object Rem {
|
|
operator<caret> fun mod(x: Int) {}
|
|
operator fun modAssign(x: Int) {}
|
|
}
|
|
|
|
fun test() {
|
|
Rem % 1
|
|
Rem.mod(1)
|
|
Rem.modAssign(1)
|
|
} |