Test revision 0
430N/A/*
430N/A * @test
430N/A * @bug 1240831
430N/A * @summary Certain classes should have been reported as abstract, but
430N/A * the compiler failed to detect this. This comes up when a
430N/A * subclass declares a method with the same name as an
430N/A * unimplemented, unaccessible method in a superclass. Even though
430N/A * the method has the same name, it does not override.
430N/A * @author turnidge
430N/A *
430N/A * @compile/fail -nowrite one/Parent.java two/Child.java
430N/A */
430N/A