JavaTXCompilerInJavaTX/app/resources/bytecode/javFiles/OverlaodGen.jav

11 lines
173 B
Plaintext
Raw Permalink Normal View History

2023-01-10 13:22:05 +00:00
import java.util.Vector;
class OverlaodGen {
void method(Vector<Integer> v) {
// Integer i = v.get(0);
}
void method(Vector<String> v) {
// String s = v.get(0);
}
}