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 5046972
|
|
|
|
* @summary type parameter referenced in static inner class improperly allowed!
|
|
|
|
* @author gafter
|
|
|
|
*
|
2015-05-16 00:43:21 +00:00
|
|
|
* @compile/fail/ref=TyparamStaticScope2.out -XDrawDiagnostics TyparamStaticScope2.java
|
2007-12-01 00:00:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package typaram.static_.scope2;
|
|
|
|
|
|
|
|
class JBug<T> {
|
|
|
|
static class Inner1 implements Set<T> {}
|
|
|
|
}
|
|
|
|
|
|
|
|
interface Set<T> {}
|