blob: 192b73807ca6f59360d81a13faf8534d5a5364dc [file] [log] [blame]
import java.io.*;
public abstract class A {
protected Object readResolve() throws ObjectStreamException {
return null;
}
}
class AImpl extends A implements Serializable {
public static void main(String[] args) {
System.out.println(new AImpl().toString());
}
}