blob: b3ef4f7646eb37a6c60e135ff91b49a3b59c7a0b [file] [log] [blame]
class OxfordBug {
private int f(int m, int n) throws Exception {
int i = 0;
while (i < n) {
i++;
<selection>if (i == m) {
n += m;
throw new Exception("" + n);
}</selection>
}
return n;
}
}