im wondering why am i having an error with the green line and how should i fix that error:
i have a class:
public class Human {
public void talk() {
}
}
and another class:
public class Boy extends Human {
public Boy() {
talk(); // error overridable method call in constructor*
}
@Override
public void talk() {
}
}