9 lines
89 B
Kotlin
Vendored
9 lines
89 B
Kotlin
Vendored
package foo
|
|
|
|
class A() {
|
|
|
|
operator fun div(other: A) = "OK"
|
|
|
|
}
|
|
|
|
fun box() = A() / A() |