blob: 5aa0912933b921996cf324095ae18a86e3a11985 [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(lis<caret>t[new Integer(0)]);
}
}