10 lines
157 B
Kotlin
Vendored
10 lines
157 B
Kotlin
Vendored
// FIX: Replace with '%'
|
|
|
|
fun test() {
|
|
class Test {
|
|
operator fun rem(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test.<caret>rem(1)
|
|
}
|