Files
kotlin-fork/js/js.translator/testData/box/operatorOverloading/notOverload.kt
T

10 lines
109 B
Kotlin
Vendored

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