Files
kotlin/compiler/testData/codegen/functionCall.jet
2011-10-20 16:21:18 +02:00

10 lines
136 B
Plaintext

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