"We have a bug, in the SARose object" 
"What?"
"See for yourself"
public class SARose extends Person {
    private final boolean isAwesome;
    private final boolean isSmart;
    private final boolean isImmortal;
    public SARose() {
        super();
        this.isAwesome = true;
        this.isSmart = true;
        this.isImmortal = false;
    }
}