Files

6 lines
110 B
Kotlin
Vendored

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