JavaCompilerCore/resources/bytecode/javFiles/Bug98.jav
Daniel Holle 26452eb5de
Some checks failed
Build and Test with Maven / Build-and-test-with-Maven (push) Failing after 3m19s
Fix #286
2024-03-11 16:16:10 +01:00

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);
}
}