9 lines
166 B
Plaintext
Vendored
9 lines
166 B
Plaintext
Vendored
// INTENTION_TEXT: Replace with '%' operator
|
|
fun test() {
|
|
class Test {
|
|
operator fun mod(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test % 1
|
|
}
|