blob: 4996ab43fd67af8c630e35c4f2b6bb74a29745bf [file] [log] [blame]
// "Replace with list access" "true"
import java.util.ArrayList;
class A {
void test(ArrayList<Integer> list) {
list.set(0, 5);
}
}