summaryrefslogtreecommitdiff
path: root/plugins/typeMigration/testData/intentions/atomic/after3.java
blob: 505349d5dc36dd31745c6b53d9a2e36b83dbd08e (plain)
1
2
3
4
5
6
7
import java.util.concurrent.atomic.AtomicIntegerArray;

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

}