blob: b724741bac86eec9925f2d6e364ae879f37f5a62 [file] [log] [blame]
// "Replace with list access" "true"
import java.util.ArrayList;
class A {
void test(ArrayList list) {
System.out.println(list.get(0));
}
}