Files
Tagir Valeev 77d1d0ab2e [java-tests] Mock JDK 21 (downloaded from the repository); remove in-place mocks where possible
Part of IDEA-334171 Store MockJDK in artifact repository, rather than in Git

GitOrigin-RevId: 9c6214e3ead47cc164d20813f5a2b37136607213
2023-10-06 10:48:24 +00:00

14 lines
260 B
Java

class Test {
void foo(String[] ss, String[] bb) {
for(int i = 0; i < ss.length; i++) {
newMethod(ss[i], bb[i]);
}
}
private void newMethod(String s, String x) {
System.out.println(s);
System.out.println(x);
}
}