test/tools/javac/generics/6182950/T6182950a.java

Mon, 13 Dec 2010 14:56:50 +0000

author
mcimadamore
date
Mon, 13 Dec 2010 14:56:50 +0000
changeset 792
2199365892b1
parent 384
ed31953ca025
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7006109: Add test library to simplify the task of writing automated type-system tests
Summary: Types.java needs to be more stress-tested
Reviewed-by: jjg

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @bug     6182950
     4  * @summary methods clash algorithm should not depend on return type
     5  * @author  mcimadamore
     6  * @compile/fail/ref=T6182950a.out -XDrawDiagnostics T6182950a.java
     7  */
     8 import java.util.List;
    10 class T6182950a {
    11     int m(List<String> l) {return 0;}
    12     double m(List<Integer> l) {return 0;}
    13 }

mercurial