JavaPatternMatching/test/plugindevelopment/MartinTestCases/ZweiKlassen.jav

17 lines
176 B
Plaintext
Raw Normal View History

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