Files
kotlin-fork/js/js.translator/testData/box/operatorOverloading/binaryDivOverload.kt
T
2018-09-12 09:49:25 +03:00

10 lines
123 B
Kotlin
Vendored

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