11 lines
202 B
Kotlin
Vendored
11 lines
202 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
class SomeException : RuntimeException()
|
|
|
|
fun test(x: Boolean, y: Boolean) {
|
|
if (x) {
|
|
throw SomeException()
|
|
} else<caret> if (y) {
|
|
return
|
|
}
|
|
} |