Files
kotlin/compiler/testData/diagnostics/testsWithJsStdLib/native/rtti/checkForNativeInterface.kt
2017-10-23 17:19:48 +03:00

5 lines
171 B
Kotlin
Vendored

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