Files
kotlin/compiler/testData/codegen/functionCall.kt
2013-01-24 21:12:27 +04:00

10 lines
136 B
Kotlin

fun f() : String? {
val x = StringBuilder();
g(x);
return x.toString();
}
fun g(sb: StringBuilder): Unit {
sb.append("foo");
}