11 lines
173 B
Plaintext
Raw Normal View History

2024-05-02 23:04:07 +02: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);
}
}