generate calls to functions in a Jet namespace
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun f() {
|
||||
val x = new StringBuilder();
|
||||
g(x);
|
||||
return x.toString();
|
||||
}
|
||||
|
||||
fun g(sb: StringBuilder): Unit {
|
||||
sb.append("foo");
|
||||
}
|
||||
Reference in New Issue
Block a user