2007-12-01 00:00:00 +00:00
|
|
|
/*
|
2015-05-16 00:43:21 +00:00
|
|
|
* @test /nodynamiccopyright/
|
2007-12-01 00:00:00 +00:00
|
|
|
* @bug 4881265
|
|
|
|
* @summary generics: compiler allows T.class for type variable T
|
|
|
|
* @author gafter
|
|
|
|
*
|
2015-05-16 00:43:21 +00:00
|
|
|
* @compile/fail/ref=TyparamLit.out -XDrawDiagnostics TyparamLit.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
class TyparamLit<T> {
|
|
|
|
Class x = T.class;
|
|
|
|
}
|