A code example:
class A {
function initialize() {
System.println("here");
}
}
class B extends A {
}
b = new B(); // Does not print "here" like it should
class BFixed extends A {
function initialize() {
A.initialize();
}
}
bFixed = new BFixed(); // Does print "here"