6 lines
88 B
Kotlin
Vendored
6 lines
88 B
Kotlin
Vendored
external interface I
|
|
|
|
fun box(a: Any, b: Any): Boolean {
|
|
return a is I && b !is I
|
|
}
|