Daniel Holle
26452eb5de
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m19s
16 lines
298 B
Java
16 lines
298 B
Java
import java.util.Vector;
|
|
import java.lang.Integer;
|
|
import java.lang.String;
|
|
|
|
public class Bug98 {
|
|
|
|
m(x, y ,z) {
|
|
x = new Vector<Integer>();
|
|
y = new Vector<String>();
|
|
x.add(1);
|
|
y.add("2");
|
|
//Integer i = x.elementAt(0);
|
|
//String s = y.elementAt(0);
|
|
return z.vectorAddAll(x, y);
|
|
}
|
|
} |