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