langtools/test/tools/javac/varargs/6806876/T6806876.java
author peterz
Fri, 28 May 2010 13:32:40 +0400
changeset 5594 3db39773da2e
parent 3766 7e2df99e9223
permissions -rw-r--r--
6954231: SynthTextPaneUI.installUI() doesn't set component to opaque even if prop was not set by client progr Reviewed-by: alexp

/*
 * @test /nodynamiccopyright/
 * @bug     6806876
 * @author mcimadamore
 * @summary  ClassCastException occurs in assignment expressions without any heap pollutions
 * @compile/fail/ref=T6806876.out -Xlint:unchecked -Werror -XDrawDiagnostics T6806876.java
 */

class T6806876 {
    void test(Integer i, Long l) {
        Comparable<?>[] res = m(i, l);
    }

    <T> T[] m(T...a) {
        return null;
    }
}