blob: 3532ce557f8c23da980a2f95279b91df8a074503 [file] [log] [blame]
class Test {
void foo(String i) {
String p = i;
}
void bar() {
foo(1, 2);
}
}