forked from JavaTX/JavaCompilerCore
18 lines
225 B
Plaintext
18 lines
225 B
Plaintext
|
import java.lang.Integer;
|
||
|
|
||
|
public class Parent {
|
||
|
public Integer x;
|
||
|
|
||
|
public Parent(Integer a) {
|
||
|
this.x = a;
|
||
|
}
|
||
|
|
||
|
public Parent() {}
|
||
|
}
|
||
|
|
||
|
class Child extends Parent {
|
||
|
Child() {
|
||
|
super(3);
|
||
|
}
|
||
|
}
|