blob: 5ed97876715ed2da54151198263d20cca27d5d37 [file]
package foo
fun test1() = "O"
fun test2(s: String): String {
return s
}
fun test(s:String) =
test1() +
test2(s)
fun box()
= test("K")