langtools/test/tools/javac/HiddenAbstractMethod/Test
changeset 10 06bc494ca11e
equal deleted inserted replaced
0:fd16c54261b3 10:06bc494ca11e
       
     1 /*
       
     2  * @test
       
     3  * @bug 1240831
       
     4  * @summary Certain classes should have been reported as abstract, but
       
     5  *          the compiler failed to detect this.  This comes up when a
       
     6  *          subclass declares a method with the same name as an
       
     7  *          unimplemented, unaccessible method in a superclass.  Even though
       
     8  *          the method has the same name, it does not override.
       
     9  * @author turnidge
       
    10  *
       
    11  * @compile/fail -nowrite one/Parent.java two/Child.java
       
    12  */