generate calls to functions in a Jet namespace

This commit is contained in:
Dmitry Jemerov
2011-04-14 19:39:50 +02:00
parent 91b613e8a4
commit 20520e991f
6 changed files with 91 additions and 40 deletions
+9
View File
@@ -0,0 +1,9 @@
fun f() {
val x = new StringBuilder();
g(x);
return x.toString();
}
fun g(sb: StringBuilder): Unit {
sb.append("foo");
}