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