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

9 lines
197 B
Kotlin
Vendored

external interface I
external interface J
fun box(a: Any) = when (a) {
<!CANNOT_CHECK_FOR_NATIVE_INTERFACE!>is I<!> -> 0
<!CANNOT_CHECK_FOR_NATIVE_INTERFACE!>!is J<!> -> 1
else -> 2
}