Completed Coursera: Kotlin for developers course
This commit is contained in:
8
src/Nothing.kt
Normal file
8
src/Nothing.kt
Normal file
@ -0,0 +1,8 @@
|
||||
fun main() {
|
||||
doesNotReturn()
|
||||
println("This is unreachable")
|
||||
}
|
||||
|
||||
fun doesNotReturn(): Nothing {
|
||||
throw RuntimeException("This function should always fail")
|
||||
}
|
Reference in New Issue
Block a user