e2dbeae85e
also add some tests for bugs with unreachable code handling and variables
9 lines
123 B
Kotlin
9 lines
123 B
Kotlin
fun main(args : Array<String>) {
|
|
val x = try {
|
|
5
|
|
} catch (e: Throwable) {
|
|
6
|
|
}
|
|
|
|
println(x)
|
|
} |