Files
kotlin-fork/compiler/testData/diagnostics/testsWithJsStdLib/native/rtti/checkForNativeInterface.fir.kt
T
2023-01-09 08:57:08 +00:00

6 lines
88 B
Kotlin
Vendored

external interface I
fun box(a: Any, b: Any): Boolean {
return a is I && b !is I
}