Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLib/native/rtti/checkForNativeInterface.kt

5 lines
166 B
Kotlin
Vendored

@native interface I
fun box(a: Any, b: Any): Boolean {
return <!CANNOT_CHECK_FOR_NATIVE_INTERFACE!>a is I<!> && <!CANNOT_CHECK_FOR_NATIVE_INTERFACE!>b !is I<!>
}