DEBSOURCES
Skip Quicknav
sources / checker-framework-java / 3.2.0%2Bds-3 / checker / tests / index / CompoundAssignmentCheck.java
12345678
class CompoundAssignmentCheck { void test() { int a = 9; a += 5; a -= 2; int[] arr5 = new int[a]; // LBC shouldn't warn here. } }