test/langtools/tools/javac/generics/TyparamStaticScope2.java
author vromero
Tue, 24 Apr 2018 08:13:30 -0700
changeset 49872 0798eab12791
parent 47216 71c04702a3d5
permissions -rw-r--r--
8201281: Truncated error message with Incompatible : null Reviewed-by: mcimadamore

/*
 * @test /nodynamiccopyright/
 * @bug 5046972
 * @summary type parameter referenced in static inner class improperly allowed!
 * @author gafter
 *
 * @compile/fail/ref=TyparamStaticScope2.out -XDrawDiagnostics  TyparamStaticScope2.java
 */

package typaram.static_.scope2;

class JBug<T> {
    static class Inner1 implements Set<T> {}
}

interface Set<T> {}