blob: 354e5378b7bcd8c17f9f63b0d8b49cdf01737395 [file] [log] [blame]
class X {
void bar(String str){
foo(str);
}
void foo(String str) {
System.out.println(str);
System.out.println(str.substring(0));
}
}