test/tools/javac/generics/5009937/T5009937.java

Thu, 15 Jul 2010 16:31:02 +0100

author
mcimadamore
date
Thu, 15 Jul 2010 16:31:02 +0100
changeset 607
b49b0d72c071
parent 384
ed31953ca025
child 611
4172cfff05f0
permissions
-rw-r--r--

6967002: JDK7 b99 javac compilation error (java.lang.AssertionError)
Summary: bug in JavacParser related to parsing of type annotations in varargs position
Reviewed-by: jjg
Contributed-by: mahmood@notnoop.com

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug 5009937
     4  * @summary hiding versus generics versus binary compatibility
     5  * @author Maurizio Cimadamore
     6  *
     7  * @compile/fail/ref=T5009937.out -XDstdout -XDrawDiagnostics T5009937.java
     8  */
    10 public class T5009937<X> {
    11     static class A {
    12         static void m(T5009937<String> l) {}
    13     }
    15     static class B extends A {
    16         static void m(T5009937<Integer> l) {}
    17     }
    18 }

mercurial