9 lines
119 B
Plaintext
Vendored
9 lines
119 B
Plaintext
Vendored
// WITH_DEFAULT_VALUE: false
|
|
|
|
fun foo(i: Int): Int {
|
|
return i / 2
|
|
}
|
|
|
|
fun test() {
|
|
foo(1.plus(2) * 3.minus(4))
|
|
} |