Files
kotlin-fork/js/js.translator/testData/box/operatorOverloading/binaryDivOverload.kt
T
2016-09-29 12:00:41 +03:00

9 lines
89 B
Kotlin
Vendored

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