blob: fcf67efa55d81b42e939ab4cd338f72ceada2fd6 [file] [log] [blame]
package bugs_out;
public class Test_117053 {
void foo(int x) {
if (x++ < 6)
x++;
}
void bar() {
int x = 2;
if (x < 10)
x++;
else
if (x++ < 6)
x++;/*[*/
}
}