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