mcimadamore@236: /* jjg@384: * @test /nodynamiccopyright/ mcimadamore@236: * @bug 6804733 mcimadamore@236: * @summary javac generates spourious diagnostics for ill-formed type-variable bounds mcimadamore@236: * @author mcimadamore mcimadamore@236: * @compile/fail/ref=T6804733.out -XDrawDiagnostics T6804733.java mcimadamore@236: */ mcimadamore@236: mcimadamore@236: import java.util.ArrayList; mcimadamore@236: class T6804733 extends ArrayList { mcimadamore@236: void m() {} mcimadamore@236: }