blob: c657db61bce99ac09412fc1a43e6f1ac3a360026 [file] [log] [blame]
// "Replace with list access" "true"
import java.util.List;
class A {
void test(List<List> lists) {
System.out.println(li<caret>sts[0].get(0));
}
}