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