langtools/test/tools/javac/ClassFileModifiers/MemberModifiers.java
changeset 7335 8b390fd27190
parent 6150 d055fa8ced62
child 7681 1f0819a3341f
equal deleted inserted replaced
7334:f432af22de29 7335:8b390fd27190
    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  -source 1.4 -target 1.4.2 -XDdumpmodifiers=cfm MemberModifiers.java
    29  * @compile/ref=MemberModifiers.out  -source 1.4 -target 1.4.2 -Xlint:-options -XDdumpmodifiers=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