9 lines
179 B
Plaintext
Vendored
9 lines
179 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
class SomeException : RuntimeException()
|
|
fun foo(): Int = 1
|
|
|
|
fun test(x: Boolean, y: Boolean) {
|
|
if (x) throw SomeException()
|
|
else if (y) return
|
|
foo()
|
|
} |