blob: 72da0f582fce8a094518816d239fc6bd163d284d [file] [log] [blame]
fun foo(a: Int, b: Int) = a + b
fun test(): String {
return "Foo: ${foo(0, 4)}"
}