Files
kotlin-fork/js/js.translator/testData/box/operatorOverloading/binaryDivOverload.kt
T
2017-07-19 12:24:09 +03:00

10 lines
122 B
Kotlin
Vendored

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