summaryrefslogtreecommitdiff
path: root/java/typeMigration/testData/intentions/atomic/after6.java
blob: f0120300e0f9d7d303b8f4f357d78ff5f27ff025 (plain)
1
2
3
4
5
6
import java.util.concurrent.atomic.AtomicIntegerArray;

// "Convert to atomic" "true"
class Test {
 final AtomicIntegerArray i = new AtomicIntegerArray(new int[0]);
}