import java.util.function.*;
public class UnnamedVariables {
void testParameter(int _, String _) {
System.out.println(_);
}
void testOneParam(String _) {
System.out.println(_);
}
int _ = 123;
String s = _;
void testLocal() {
int _ = 10;
int _ = 20;
for (int _ = 1;;) {}
}
void testCatch() {
try {
System.out.println();
}
catch (Exception _) {
System.out.println("ignore");
}
catch (Error _) {
int _ = 1;
for(int _:new int[10]) {
System.out.println("oops");
}
}
}
}