blob: d082324a3e1d0071d4b6dcc4ec24b4cddd90186c [file] [log] [blame]
fun foo(a: Int): Int {
val b = (<selection>a + 1</selection>) * 2
return a + b
}
fun test() {
foo(1)
}