11 lines
138 B
Plaintext
Raw Normal View History

import java.util.Vector;
2014-04-23 17:59:59 +02:00
class UsecaseFive_pl<A> {
foo() {
Vector<Integer> c;
c = new Vector<Integer>() ;
return c;
}
}