blob: 1bc9e8cc92258e0919575af79bca6ad305bbcdd0 [file] [log] [blame]
fun f(a: Int): Int {
fun localFun() {
if (a > 5) {
return
}
<caret>throw Error()
}
if (a < 5) {
return 1
}
else {
throw Exception()
}
}
//HIGHLIGHTED: return
//HIGHLIGHTED: throw Error()