0N/A/*
0N/A * @test /nodynamiccopyright/
0N/A * @bug 4332631 4785453
0N/A * @summary Check for proper error recovery when superclass of extended
0N/A * class is no longer available during a subsequent compilation.
0N/A * @author maddox
0N/A *
610N/A * @compile/fail/ref=MissingSuperRecovery.out -XDdiags=%b:%l:%_%m MissingSuperRecovery.java
0N/A */
0N/A
0N/A// Requires "golden" class file 'impl.class', which contains
0N/A// a reference to a superclass at a location no longer on the classpath.
0N/A// Note that this test should elicit an error, but should not cause a compiler crash.
0N/A
0N/Apublic class MissingSuperRecovery extends impl {
0N/A private String workdir="";
0N/A}