Files
kotlin-fork/js/js.translator/testData/operatorOverloading/cases/binaryDivOverload.kt
T

9 lines
109 B
Kotlin
Vendored

package foo
class A() {
operator fun div(other: A) = "hooray"
}
fun box() = ((A() / A()) == "hooray")