mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 15:24:43 +02:00
9 lines
314 B
Java
9 lines
314 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4980352
|
|
* @summary Verify compiler doesn't throw a NullPointerException when compiling.
|
|
* @author tball
|
|
*
|
|
* @compile/fail/ref=BoundClassError.out -XDrawDiagnostics BoundClassError.java
|
|
*/
|
|
public class BoundClassError <T extends String&Comparable<BoundClassError>> {}
|