blob: 98c6588db7eb4d9015de0903328109ae82e5fdc2 [file]
fun foo(b: Boolean) {
if (!b) bar(2) // comment2
else
bar(1) // comment1
}
fun bar(i: Int) {}