blob: d3d0964f141088acffbf8144c07063b1e235b83b [file] [log] [blame]
package p0;
public class Test {
void m() {
new StringBuffer("hello").substring(1, 3);
new StringBuffer("hello").substring(1, 4);
}
}