blob: 604b45048325557713654f4509f2555cc27921b4 [file] [log] [blame]
public class A {
void test(String s) {
System.out.println(s);
System.out.println(s.length());
}
void callTest(String aString) {
test(aString);
}
}