9 lines
138 B
Kotlin
9 lines
138 B
Kotlin
// SIBLING:
|
|
fun foo(a: Int): Int {
|
|
var b: Int = 1
|
|
|
|
<selection>if (n == 10) throw Exception("")
|
|
b++</selection>
|
|
|
|
return b
|
|
} |