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

10 lines
110 B
Kotlin
Vendored

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