JavaTXCompilerInJavaTXNoMaven/resources/bytecode/javFiles/SubMatrix.jav
2024-05-02 23:04:07 +02:00

13 lines
212 B
Java

import java.util.Vector;
import java.lang.Integer;
public class Matrix2 extends Vector<Integer> {
}
public class SubMatrix extends Matrix2 {
m(){
Vector<Integer> v = new Vector<Integer>();
v.add(1);
}
}