blob: 65f577b1113ba9ae0c30b3d789c4900bd4c9182d [file] [log] [blame]
public class CompoundAssignmentCheck {
void test() {
int a = 9;
a += 5;
a -= 2;
int[] arr5 = new int[a]; // LBC shouldn't warn here.
}
}