11 lines
173 B
Plaintext
Raw Normal View History

2018-01-31 14:16:20 +01: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);
}
}