9 lines
76 B
Kotlin
Vendored
9 lines
76 B
Kotlin
Vendored
package foo
|
|
|
|
class A() {
|
|
|
|
operator fun not() = "OK"
|
|
|
|
}
|
|
|
|
fun box() = !A() |