blob: e989fd07e0ccda237db09b39b0f08301218cf423 [file] [log] [blame]
class Base {
public Base() {
}
}
class Inheritor extends Base {
public Inheritor() {
super();
String bar = "bar".toString();
System.out.println(bar);
}
public static void main(String[] args) {
new Inheritor();
}
}