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 13:50:56 +01:00
public class Child extends Parent {
public Child() {
super(3);
}
}