blob: 631550ad7a101fa475fd08e1df9265ca0ae2931b [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 5086027
* @summary Inner class of generic class cannot extend Throwable
* @author Peter von der Ah\u00e9
* @compile/fail/ref=T5086027.out -XDrawDiagnostics T5086027.java
*/
public class T5086027<T> {
class X extends Exception {}
}