Files
kotlin-fork/backend.native/tests/codegen/function/sum_foo_bar.kt
T
2016-10-11 11:24:47 +03:00

4 lines
96 B
Kotlin

fun foo(a:Int):Int = a
fun bar(a:Int):Int = a
fun sumFooBar(a:Int, b:Int):Int = foo(a) + bar(b)