8 lines
156 B
Plaintext
Vendored
8 lines
156 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
class SomeException : RuntimeException()
|
|
fun foo(): Int = 1
|
|
|
|
fun test(x: Boolean): Int {
|
|
if (x) throw SomeException()
|
|
return foo()
|
|
} |