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