01: package testlib.modifiers;
02:
03: /**
04: * It is a binary compatibility error for a non-final class to become
05: * final in a later version, because users may have created classes which
06: * are derived from it. Such classes will fail to load with the new version
07: * of the class present.
08: */
09:
10: public final class NonFinalBecomesFinal {
11: }
|