blob: 7c19de1ed075c5f6ce6546072c5e3e6beac21ca4 [file] [log] [blame]
public class A {
final String f;
public A() {
f = "";
}
}
class B extends A {
final String foo;
B(String fi, String foo) {
super();
this.foo = foo;
}
B(String foo) {
super();
this.foo = foo;
}
}