blob: 6f8ad68fadcc5db90844f5e8387e8874e96812f9 [file] [log] [blame]
/*
* @test /nodynamiccopyright/
* @bug 4942201
* @summary java allows class literal on generic type parameter array
* @author gafter
*
* @compile/fail/ref=GenLit2.out -XDrawDiagnostics GenLit2.java
*/
package genLit2;
class U<T> {
Class t = T[].class;
}