JavaPatternMatching/test/plugindevelopment/MartinTestCases/UsecaseFive_pl.jav

11 lines
138 B
Plaintext
Raw Normal View History

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