langtools/test/tools/javac/OverrideChecks/6400189/T6400189b.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     6400189
 * @summary raw types and inference
 * @author  mcimadamore
 * @compile/fail/ref=T6400189b.out T6400189b.java -Xlint:unchecked -XDrawDiagnostics
 */

class T6400189b<T> {

    static class A {
        <T> T m(T6400189b<T> x) {
            return null;
        }
    }

    static class B<T> extends A {
        <T> T m(T6400189b<T> x) {
            return null;
        }
    }

    void test(B b) {
        Integer i = b.m(new T6400189b<Integer>());
    }
}