java-topology/test/langtools/tools/javac/warnings/Serial/InstanceField.java
russell@unturf.com 0a580b313d undefect. CWE-407 — 63 sites patched across 27 ecosystems
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.
2026-03-26 17:11:57 -04:00

40 lines
953 B
Java

/*
* @test /nodynamiccopyright/
* @bug 8202056
* @compile/ref=InstanceField.out -XDrawDiagnostics -Xlint:serial InstanceField.java
*/
import java.io.*;
class IntanceField implements Serializable {
private static final long serialVersionUID = 42;
// Non-transient instance fields in a serializable class w/o
// serialPersistentFields defined should get warnings if the type
// of the field cannot be serialized.
private Object foo;
private Object[] foos;
private Thread[][] ArrayOfArrayOfThreads;
// No warnings
private static Object bar;
private static Object[] bars;
private int baz;
private double[] quux;
static class NestedInstance implements Serializable {
private static final long serialVersionUID = 24;
// Should disable instance field warnings
private static final ObjectStreamField[] serialPersistentFields = {};
private Object foo;
}
}