blob: f5970c3298759b11d71f762d2cfbb1dfae94c120 [file] [log] [blame]
// WITH_DEFAULT_VALUE: false
fun foo(i: Int): Int {
return i / 2
}
fun test() {
foo((1 + 2) * (3 - 4))
}