Files
2009-09-10 19:49:38 +04:00

13 lines
145 B
Plaintext

public class A {
void test(int count) {
String t = null;
}
void callTest() {
test(1);
}
void callTest2() {
test(2);
}
}