blob: 92828746f335c63c9a21a449d84032ef8ace0a83 [file] [log] [blame]
fun f(a: Int): Int {
if (a < 5) {
run {
<caret>return 1
}
}
else {
return 2
}
}
inline public fun <T> run(f: () -> T): T { }
//HIGHLIGHTED: return 1
//HIGHLIGHTED: return 2