blob: 853f715fd8c4ac4b0d13afdf0f2bb68900a3a6a9 [file] [log] [blame]
import java.util.concurrent.atomic.AtomicIntegerArray;
// "Convert to atomic" "true"
class Test {
final AtomicIntegerArray field= new AtomicIntegerArray(foo());
int[] foo() {
return null;
}
}