author | hseigel |
Wed, 02 Mar 2016 23:48:41 +0000 | |
changeset 36397 | c487ced7231c |
parent 30719 | 91834c070ba5 |
permissions | -rw-r--r-- |
/* * @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<X> {} class Crash1Test<X> { public <M extends C1GenericInterface,N extends M & C1B1<X>> void meth( ) {} } }