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