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.
15 lines
426 B
Java
15 lines
426 B
Java
/*
|
|
* @test /nodynamiccopyright/
|
|
* @bug 7152104
|
|
* @summary Make sure no warning is emitted for anonymous classes
|
|
* without serialVersionUID
|
|
* @compile SerialWarn.java
|
|
* @compile -Werror -XDrawDiagnostics -Xlint:serial SerialWarnAnon.java
|
|
*/
|
|
|
|
class SerialWarnAnon {
|
|
interface SerialWarnAnonInterface extends java.io.Serializable { }
|
|
Object m() {
|
|
return new SerialWarnAnonInterface() { };
|
|
}
|
|
}
|