Files
kotlin-for-java-developers/src/Nothing.kt
2025-07-30 14:34:03 +02:00

9 lines
167 B
Kotlin

fun main() {
doesNotReturn()
println("This is unreachable")
}
fun doesNotReturn(): Nothing {
throw RuntimeException("This function should always fail")
}