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