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

6 lines
96 B
Kotlin
Vendored

external interface I
fun box(a: Any, b: Any): Pair<I, I?> {
return Pair(a as I, b as? I)
}