1 2 3 4 5 6 7 8 9 10 11 12 13
package x; public class B { private int b() { return b(); } @Override protected Object clone() throws CloneNotSupportedException { b(); return super.clone(); } }