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