test/tools/javac/generics/6985719/T6985719e.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     6985719
     4  * @summary Alike methods in interfaces (Inheritance and Overriding)
     5  * @author  mcimadamore
     6  * @compile/fail/ref=T6985719e.out -XDrawDiagnostics T6985719e.java
     7  */
     9 import java.util.List;
    11 class T6985719e {
    12     interface A { void f(List<String> ls); }
    13     interface B extends A { void f(List<Integer> ls); }
    14 }

mercurial