JavaCompilerCore/resources/bytecode/javFiles/OLConstructor.jav

18 lines
239 B
Plaintext
Raw Normal View History

import java.lang.Integer;
public class Parent {
public Integer x;
public Parent(Integer a) {
this.x = a;
}
public Parent() {}
}
2024-03-14 12:50:56 +00:00
public class Child extends Parent {
public Child() {
super(3);
}
}