blob: a3c59d28b3dabd5cbeaa418282545fc9248e77db [file] [log] [blame]
// "Replace with list access" "true"
import java.lang.Math;
import java.util.List;
class A {
void test(List<List> lists) {
System.out.println(lists.get(Math.max(Math.abs(-2), 3)));
}
}