No, you can't just call super. It's just too complicated.
There are two situations (beyond extending Object directly) for which
calling super is no good, and it's not possible for lombok to tell. It
can only be sure when the superclass has lombok-generated equals and
hashCode memories, and we'd have to modify equals and hashCode to add
an annotation so lombok can tell even when you're extending classes
that aren't available in source form. In other words, rather
complicated stuff, for not a whole lot of gain. The situations are:
1) The superclass has no equals/hashCode implementation whatsoever.
This can be quite common, especially for flag-like superclasses that
don't themselves have any fields.
2) The superclass has an equals implementation that is extending-
capable. For example, if you class-check via: "if ( o.getClass() !=
MyClassName.class ) return false;" which I've seen here and there,
calling super is _definitely_ the wrong thing to do.