/* Erroneous class * The class B does not inherit the constructor * that only takes a String as parameter. */ class E extends B{ E(){super("Hello");} }