test/tools/javac/AnonStaticMember_2.java

Mon, 14 Feb 2011 14:27:47 -0800

author
jjg
date
Mon, 14 Feb 2011 14:27:47 -0800
changeset 876
ef6c66215a93
parent 855
afe226180744
child 890
3ab7bb46c5c1
permissions
-rw-r--r--

7008433: Minor copyright changes
Reviewed-by: jjg
Contributed-by: kelly.ohair@oracle.com

     1 /*
     2  * @test  /nodynamiccopyright/
     3  * @bug 4279339
     4  * @summary Verify that an anonymous class cannot contain a static method.
     5  * @author maddox
     6  *
     7  * @run compile/fail/ref=AnonStaticMember_2.out -XDrawDiagnostics AnonStaticMember_2.java
     8  */
    10 class AnonStaticMember_2 {
    11     Object x = new Object() {
    12         static void test() {}
    13     };
    14 }

mercurial