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

6 lines
164 B
Kotlin
Vendored

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