test/tools/javac/cast/6557182/T6557182.java

Wed, 27 Apr 2016 01:34:52 +0800

author
aoqi
date
Wed, 27 Apr 2016 01:34:52 +0800
changeset 0
959103a6100f
child 2525
2eb010b6cb22
permissions
-rw-r--r--

Initial load
http://hg.openjdk.java.net/jdk8u/jdk8u/langtools/
changeset: 2573:53ca196be1ae
tag: jdk8u25-b17

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @author Maurizio Cimadamore
     4  * @bug     6557182
     5  * @summary  Unchecked warning *and* inconvertible types
     6  * @compile/fail/ref=T6557182.out -XDrawDiagnostics -Xlint:unchecked T6557182.java
     7  */
     9 class T6557182 {
    11     <T extends Number & Comparable<String>> void test1(T t) {
    12         Comparable<Integer> ci = (Comparable<Integer>) t;
    13     }
    15     <T extends Number & Comparable<? extends Number>> void test2(T t) {
    16         Comparable<Integer> ci = (Comparable<Integer>) t;
    17     }
    18 }

mercurial