Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
11 lines
337 B
Java
11 lines
337 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 4854628
|
|
* @summary include Throwable subclasses in missing serialVersionUID warning
|
|
* @author gafter
|
|
*
|
|
* @compile -Werror SerialWarn.java
|
|
* @compile/fail/ref=SerialWarn.out -XDrawDiagnostics -Xlint:serial -Werror SerialWarn.java
|
|
*/
|
|
|
|
class SerialWarn extends Throwable {}
|