Neg2.java revision 2553:bbf11d72b334
1252661Snp/*
2252661Snp * @test    /nodynamiccopyright/
3252661Snp * @bug     5060485
4252661Snp * @summary The scope of a class type parameter is too wide
5252661Snp * @author  Peter von der Ah\u00e9
6252661Snp * @compile/fail/ref=Neg2.out -XDrawDiagnostics  Neg2.java
7252661Snp */
8252661Snp
9252661Snppublic class Neg2<X extends X> {
10252661Snp}
11252661Snp