langtools/test/tools/javac/ClassFileModifiers/MemberModifiers.java
changeset 40835 6ab9ed1abc46
parent 39599 3c7da4996d8c
equal deleted inserted replaced
40777:e384420383a5 40835:6ab9ed1abc46
    24 /*
    24 /*
    25  * @test
    25  * @test
    26  * @bug 4249112 4785453
    26  * @bug 4249112 4785453
    27  * @summary Verify that implicit member modifiers are set correctly.
    27  * @summary Verify that implicit member modifiers are set correctly.
    28  *
    28  *
    29  * @compile/ref=MemberModifiers.out -Xdebug:dumpmodifiers=cfm MemberModifiers.java
    29  * @compile/ref=MemberModifiers.out --debug:dumpmodifiers=cfm MemberModifiers.java
    30  */
    30  */
    31 
    31 
    32 // Currently, we check only that members of final classes are not final.
    32 // Currently, we check only that members of final classes are not final.
    33 // Originally, we tested that methods were final, per the fix for 4249112.
    33 // Originally, we tested that methods were final, per the fix for 4249112.
    34 // This fix was backed out, however, based on a determination that the
    34 // This fix was backed out, however, based on a determination that the