Files
kotlin-fork/backend.native/tests/codegen/function/sum_3const.kt
T
2016-10-28 12:27:12 +03:00

3 lines
77 B
Kotlin

fun sum3():Int = sum(1, 2, 33)
fun sum(a:Int, b:Int, c:Int): Int = a + b + c