blob: b5520602a400d1ab9788d93a7ba602b8b5b8a2bb [file] [log] [blame]
// WITH_DEFAULT_VALUE: false
fun foo(a: Int, b: Int): Int {
return <selection>a * b</selection> / 2
}
fun test() {
foo(1 + 2, 3 - 4)
}