blob: 057abc4ca6269fa299d975cc0fb694942d078c62 [file] [log] [blame]
public class A {
void test(int count) {
String t = null;
}
void callTest() {
test(1);
}
void callTest2() {
test(2);
}
}