blob: 434470b03b2519920c7927ead25a3b38ba3b89b8 [file] [log] [blame]
public class X {
void f(String a, String b) {
StringBuffer buffer = new StringBuffer();
<spot>buffer.append(a)</spot>;
buffer.append(b);
}
}