blob: 4be4ab5be2feb53bdd2623a2f067e3603c0e7542 [file] [log] [blame]
fun foo(p: Int) {
val x = 2
if (p > 0) {
<caret>if (x > 1) bar()
}
}
fun bar(){}