test/tools/javac/generics/6910550/T6910550c.java

Tue, 13 Sep 2011 14:14:57 +0100

author
mcimadamore
date
Tue, 13 Sep 2011 14:14:57 +0100
changeset 1085
ed338593b0b6
parent 0
959103a6100f
permissions
-rw-r--r--

7086595: Error message bug: name of initializer is 'null'
Summary: Implementation of MethodSymbol.location() should take into account static/instance initializers
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 6910550
     4  *
     5  * @summary javac 1.5.0_17 fails with incorrect error message
     6  * @compile/fail/ref=T6910550c.out -XDrawDiagnostics T6910550c.java
     7  *
     8  */
    10 class T6910550c {
    11     void m(Object[] x) {}
    12     void m(Object... x) {}
    14     { m(); }
    15     { m(null); }
    16     { m(null, null); }
    17     { m(null, null, null); }
    18 }

mercurial