/* * @test /nodynamiccopyright/ * @bug 4739399 * @summary generics: crash after error regarding bounds on type variable * @author gafter * * @compile/fail/ref=T4739399.out -XDrawDiagnostics T4739399.java */ class T4739399 { class Crash1 {} interface C1GenericInterface {} interface C1B1 {} class Crash1Test { public > void meth( ) {} } }