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