java-topology/test/langtools/tools/javac/processing/model/util/printing/module-info.out
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

28 lines
409 B
Text

package p;
public class P {
public static class P1 extends p.P {
public P1();
}
public static class P2 extends p.P {
public P2();
}
public P();
}
/**
* Printing of modules
*/
@java.lang.Deprecated
module printing {
requires java.base;
requires static transitive java.compiler;
exports p to m.m1, m.m2;
opens p to m.m1, m.m2;
uses p.P;
provides p.P with p.P.P1, p.P.P2;
}