Files
kotlin-for-java-developers/src/Nothing.kt

9 lines
167 B
Kotlin
Raw Normal View History

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