9 lines
155 B
Plaintext
Vendored
9 lines
155 B
Plaintext
Vendored
// FIX: Replace with '/' operator
|
|
fun test() {
|
|
class Test {
|
|
operator fun div(a: Int): Test = Test()
|
|
}
|
|
val test = Test()
|
|
test / 1
|
|
}
|