separate compiler and plugin tests
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
fun f() : String? {
|
||||
val x = StringBuilder();
|
||||
g(x);
|
||||
return x.toString();
|
||||
}
|
||||
|
||||
fun g(sb: StringBuilder): Unit {
|
||||
sb.append("foo");
|
||||
}
|
||||
Reference in New Issue
Block a user