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