23 lines
308 B
Java
Raw Normal View History

2007-12-01 00:00:00 +00:00
/*
* @test /nodynamiccopyright/
2007-12-01 00:00:00 +00:00
* @bug 5024308
* @summary "rare" types
* @author gafter
*
* @compile/fail/ref=Rare7.out -XDrawDiagnostics Rare7.java
2007-12-01 00:00:00 +00:00
*/
package rare7;
class A<T> {
class B<U> {
T t;
}
static class C {
{
B<String> b = null;
}
}
}