JavaCompilerCore/resources/bytecode/javFiles/Inherit.jav
Daniel Holle ebd6a00a39
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m50s
Fix the rest of the test cases
2024-03-14 14:38:02 +01:00

21 lines
261 B
Java

import java.util.Vector;
import java.lang.Integer;
import java.lang.String;
import AA;
import BB;
import CC;
import DD;
public class Inherit {
public main(d, i) {
return d.m(i);
}
public main(v, i) {
var aa = v.elementAt(0);
return aa.m(i);
}
}