JavaCompilerCore/test/bytecode/Overloading.jav

12 lines
125 B
Plaintext
Raw Normal View History

import java.util.Vector;
class Overloading{
void method(Vector<String> v) {
}
void method(Vector<Integer> v) {
}
}