JavaCompilerCore/resources/bytecode/javFiles/Bug98.jav

16 lines
305 B
Plaintext
Raw Normal View History

2024-03-11 15:16:10 +00:00
import java.util.Vector;
import java.lang.Integer;
import java.lang.String;
public class Bug98 {
2024-03-14 12:50:56 +00:00
public m(x, y ,z) {
2024-03-11 15:16:10 +00:00
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);
}
}