8 lines
156 B
Kotlin
Vendored
8 lines
156 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
class SomeException : RuntimeException()
|
|
fun foo(): Int = 1
|
|
|
|
fun test(x: Boolean) {
|
|
if (x) throw SomeException()
|
|
else<caret> foo()
|
|
} |