Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/kt32507.fir.kt
T

6 lines
110 B
Kotlin
Vendored

fun foo(bar: Any?): Int {
bar as String?
bar ?: throw IllegalStateException()
return bar.length
}