JavaCompilerCore/resources/bytecode/javFiles/SubMatrix.jav

13 lines
212 B
Plaintext
Raw Normal View History

2018-07-18 11:51:05 +00:00
import java.util.Vector;
import java.lang.Integer;
public class Matrix2 extends Vector<Integer> {
2018-07-18 11:51:05 +00:00
}
public class SubMatrix extends Matrix2 {
m(){
Vector<Integer> v = new Vector<Integer>();
v.add(1);
}
}