blob: fc9dc3af5e2ddb3dd1be2651b7cb6ea98d3cc082 [file] [log] [blame]
class Test {
void f() {
new Runnable() {
public void run() {
int j = 0;
if (j == 0 && <selection>j < 0 && j > 0</selection>) {
assert false;
}
}
};
}
}