blob: 1dbd44a37d80381471d68842c6e78e4553257105 [file] [log] [blame]
class A {
A(int i) {
}
static A newA(int i) {
return new A(i);
}
}
class B extends A {
B(int i) {
super(i);
}
}